欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++学习第一天(helloword)

程序员文章站 2022-04-28 10:44:00
C++编译过程 1 #include 2 //iostream 提供了一个叫命名空间的东西,标准的命名空间是std 包含了有关输入输出语句的函数 3 // input&^output 4 //stream 流 5 //命名空间 6 using namespace std; 7 ......

c++编译过程                                                                                                                          

C++学习第一天(helloword)

C++学习第一天(helloword)
 1 #include <iostream>
 2 //iostream 提供了一个叫命名空间的东西,标准的命名空间是std 包含了有关输入输出语句的函数
 3 // input&^output
 4 //stream 流
 5 //命名空间
 6 using namespace std;
 7 int main(void)
 8 {
 9  //count就是黑屏幕
10     cout << "hello world" << endl;
11 //endl 是控制符,表示重启一行
12 //与其说程序显示一条消息,不如说它将一个字符串插入到了输出流中; 
13 //    getchar();
14     return 0;
15 }
16 #if 0
17 #include <stdio.h>
18 int main(void)
19 {
20     printf("hello world");
21     return 0;
22 
23 } 
24 #endif 
helloworld