如果在C++给一个string数组,只给前面几个数组中元素赋值,那么没有赋值的元素对应内存空间里面是什么

2024-11-28 04:52:39
推荐回答(1个)
回答1:

#include 
#include 
using namespace std;
  
  string st[4]={"a","b"};
  
  int main(){
   cout << st[0] << endl << st[1] << endl << st[2] << endl << st[3] << endl;
  }

输出

a

b

换行

换行

空字符串