2018年5月25日 星期五

兩數相加

兩數相加
#include <stdio.h>
extern int a, b;
extern int c;
int main () {
   int a, b;
   int c;
   a = 10;
   b = 20;
   c = a + b;
   printf("value of c = %d ",c);
   return 0;
}

執行結果 :
value of c = 30

沒有留言:

張貼留言