Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdio.h>
  3.  
  4. int main(void)
  5. {
  6. string name = get_string("What is your name?");
  7. printf("hello, %s\n", name);
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement