码迷,mamicode.com
首页 > 其他好文 > 详细

代码示例_C提高_main

时间:2019-06-26 00:36:10      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:示例   NPU   main   strong   clu   turn   str   har   style   

 

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

标签:示例   NPU   main   strong   clu   turn   str   har   style   

原文地址:https://www.cnblogs.com/panda-w/p/11087356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!