标准输出流(cout)

预定义的对象 cout 是 iostream 类的一个实例。cout 对象"连接"到标准输出设备,通常是显示屏。cout 是与流插入运算符 << 结合使用的,如下所示:

实例

#include using namespace std; int main( ) { char str[] = "Hello C++"; cout << "Value of str is : " << str << endl; }

你可能感兴趣的:(c++,开发语言)