fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("The C Multiply 2 Numbers Program.\n");
  5. int x = 25;
  6. int y = 25;
  7. int z = (x * y);
  8. printf("X %-2i Y %-2i\n", x);return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
The C Multiply 2 Numbers Program.
X  25  Y  0