Advertisement
Mihai_Preda

Untitled

Nov 15th, 2020
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. /**
  2.  * Copyright ITOIT Meditatii SRL
  3.  * Lesson challenge
  4.  */
  5. #include <cstdio>
  6.  
  7. // Ce afiseaza programul de mai jos?
  8.  
  9. int main()
  10. {
  11.     int x;
  12.     printf("Hello World\n");
  13.     x = 10;
  14.     scanf("%d", &x);
  15.     printf("%d", x);
  16.     return 0;
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement