fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. /* variable definition: */
  5. int x, y, z;
  6.  
  7. /* variable initialization */
  8. x = 11;
  9. y = 23;
  10. z = x * y;
  11. printf("Integers (x,y) and multiplied (z) are : %d,%d,%d \n", x,y,z);
  12. printf("Lizzie Bodnar \n");
  13. printf("CMIS-102 7383 \n");
  14. printf("Hands-On Lab #2");
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
Integers (x,y) and multiplied (z) are : 11,23,253 
Lizzie Bodnar 
CMIS-102 7383 
Hands-On Lab #2