ansi C(89) 的全文在此:
http://flash-gordon.me.uk/ansi.c.txt
main 有关的定义:
"Program startup"
The function called at program startup is named main . The
implementation declares no prototype for this function. It can be
defined with no parameters:
int main(void) { /*...*/ }
or with two parameters (referred to here as argc and argv , though any
names may be used, as they are local to the function in which they are
declared):
int main(int argc, char *argv[]) { /*...*/ }
|