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