代码示例_C提高_main
Posted panda-w
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码示例_C提高_main相关的知识,希望对你有一定的参考价值。
main
jia_fa.c
1 #include <stdio.h> 2 3 int main(int argc, char **argv) 4 5 if(argc != 3 ) 6 printf("input error !\n"); 7 return 0; 8 9 10 int a = atoi(argv[1]); 11 int b = atoi(argv[2]); 12 printf("%d + %d = %d\n",a,b,a+b); 13 14 return 0; 15
以上是关于代码示例_C提高_main的主要内容,如果未能解决你的问题,请参考以下文章