2024-10-30 07:46:00
//vs2010编译通过
#include <iostream>
using namespace std;
int main()
{
//定义一个存储字符串字面值的字符数组
char serID[] = "s";
//输出结果为s
cout << serID[0] << endl;
system("pause");
return 0;
}
我不是在namespace std;里面做C++的,我是做socket programming。还是一样的么??
using namespace std; //使用C++命名空间中的名字 cout endl 都是在std中声明的
语言是独立的 在哪个编译环境都一样