fork download
  1. #include <stdio.h>
  2. int main ()
  3. {
  4. /* variable definition: */
  5. int a, b, c;
  6.  
  7. /* variable initialization */
  8. a = 10;
  9. b = 20;
  10. c = a + b;
  11. printf("Integers (a,b) and sum (c) are : %d,%d,%d \n", a,b,c);
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 4372KB
stdin
Standard input is empty
stdout
Integers (a,b) and sum (c) are : 10,20,30