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 Z %-3i\n", x, y, z);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
The C Multiply 2 Numbers Program.
X  25  Y  25  Z  625