cout如何輸入輸出字符串數組?
cin:輸入字符串數組時,對三種空白符均敏感,與scanf+%s相同;
cout:在輸出字符創數組時,與puts()和printf+%s相同,遇到‘\0’停止輸出。
#include <iostream>
using namespace std;
int main()
{
char a[100];
cin >> a;
cout << a;
return 0;
}
cout如何輸入輸出字符串數組?
cin:輸入字符串數組時,對三種空白符均敏感,與scanf+%s相同;
cout:在輸出字符創數組時,與puts()和printf+%s相同,遇到‘\0’停止輸出。
#include <iostream>
using namespace std;
int main()
{
char a[100];
cin >> a;
cout << a;
return 0;
}