Advertisement
jordan40417669

hhhhhh

Nov 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. int main()
  2. {
  3. char str[100];
  4. int no;
  5.  
  6. printf("Hello World\n");
  7. printf("Enter You Name\n");
  8. scanf("%s", &str);
  9. printf("Your Name Is %s \n", str);
  10. printf("How Old Are You?\n ");
  11. scanf("%d", &no);
  12. printf("You Are %d Years Old\n", no);
  13.  
  14. printf("Hello %s you have lived on earth for %d years.\n", str, no);
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement