Guest User

Untitled

a guest
Jun 13th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <cstdio>
  2.  
  3. int main() {
  4. char name[32];
  5. printf("Enter your name and press ENTER\n");
  6. scanf("%s", name);
  7. printf("Hi, %s!\n", name);
  8.  
  9. return 0;
  10. }
Add Comment
Please, Sign In to add comment