本文共 284 字,大约阅读时间需要 1 分钟。
mkdir temp
cd temp
1)C程序
gedit testc.c
#includeint main(){ printf("Hello World!\n"); return 0;}
gcc testc.c -o hello
./hello
Hello World!
2)C++程序
gedit test.cpp
#includeint main(){ std::cout<<"Hello, world!\n";}
g++ test.cpp -o test
./test
Hello, world!
转载地址:http://qllyx.baihongyu.com/