练习1:安装Visual C++ 6.0开发环境。
练习2:编写程序,要求运行程序后输出“你好,世界!”并进行注释。
练习3:编写程序,在命令行中输出如下三行内容:
one 123; two 456; three 789;
练习4:编写程序,使用快捷键“Alt+F8”,优化这段程序。
#include <stdio.h"> int main() { printf("My first program \n"); return 0; }