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