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