fork download
  1. #include <stdio.h>
  2.  
  3. int main(){
  4. int a =10;
  5. int b =20;
  6. int c;
  7.  
  8. c=a+b;
  9.  
  10. printf("The value of c is % d\n",c);
  11.  
  12. return 0;
  13. }
  14.  
  15.  
  16.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
The value of c is  30