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