fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. /* variable definition: */
  5. int a, b, c;
  6.  
  7. /* variable initialization */
  8. a = 387;
  9. b = 0;
  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.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
Integers (a,b) and product (c) are : 387,0,0