摘要:
先看看由VC6自动生成的Hello World程序代码: 1 // hello world.cpp : Defines the entry point for the console application.2 //34 #include "stdafx.h"56 int main(int argc, char* argv[])7 {8 printf("Hello World!\n");9 return 0;10 } 刚学C语言的时候,书上的Hello World程序的main函数也是带参的,当时老师告诉我们:这个你们先别管,以后会懂的。然后就轻轻带过了 阅读全文