/* test1.c */
#include <stdio.h>
#include <stdlib.h>
int main()
{
int m = 11;
system("./test2 m");
return 0;
}
上面的程序打印 0,而我希望它打印 11。
/* test2.c */
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int m = atoi(argv[1]);
printf("%d\n", m);
return 0;
}
有人可以提供解释吗?还有什么是打印所需的 11 的正确方法?