📜  c 程序样板 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:40.839000             🧑  作者: Mango

代码示例6
#include  

int main () ; 
{ 
int a = 32 ;
 int b= 43 
 c = a+b ; 
 printf (" the value of a and is %d , a and b ") ; 
 
 \\ the value of  c = a+b is 75 

 return 0 ;
 }