c01helloworld.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "hello world" << endl;
return 0;
}
- #include<iostream>; 预编译指令,引入头文件iostream.
- using namespace std; 使用标准命名空间
- cout << “hello world”<< endl; 和printf功能一样,输出字符串”hello wrold”









![[Redis] Redis Desktop Manager 安装包和连接和创建流程](https://img-blog.csdnimg.cn/direct/a8f47cc643bd4ac8aa367ea122ea4559.png)










