标签: cout cstring
我正在编写一个程序,我有两个c字符串first Name[21];和last Name[21]; 我想输出到控制台,例如cout << first Name << " " << last Name;,但是当我这样做时,在一行上打印第一个名字,然后在另一行打印姓氏。我不知道怎么办才能让他们在一行上打印任何帮助?
first Name[21];
last Name[21];
cout << first Name << " " << last Name;