Guest User

Untitled

a guest
Jan 18th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int input;
  6. // insert code here...
  7.  
  8. printf("Hello, World!n");
  9. printf("Please Enter Number : ");
  10. scanf("%d",&input);
  11. getchar();
  12. printf("Input is : %d",input);
  13. return 0;
  14. }
  15.  
  16. >Hello, World!
  17.  
  18. >Please Enter Number : 4
  19.  
  20. >Input is : 4555
Add Comment
Please, Sign In to add comment