C++編譯過程 1 #include <iostream> 2 //iostream 提供了一個叫命名空間的東西,標準的命名空間是std 包含了有關輸入輸出語句的函數 3 // input&^output 4 //stream 流 5 //命名空間 6 using namespace std; 7 ...
C++編譯過程
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 #endifHelloWorld