这个程序看不懂,帮忙
#include <stdlib.h>#include <stdio.h>
void main(int argc, char *argv[], char *env[])
{
printf("Command line\n");
while (*argv)
puts(*argv++);
printf("Environment entries\n");
while (*env)
puts(*env++);
}
2010-06-10 11:18

2010-06-10 14:50
2010-06-10 22:14
2010-06-11 13:19
2010-06-11 14:03
2010-06-11 21:43
2010-06-12 09:13
谢谢2楼
2010-06-12 11:19
2010-06-12 11:36
2010-06-12 13:05