Advertisement
Guest User

Untitled

a guest
Jun 24th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. int main(void)
  4. {
  5. char string[100];
  6. printf("hey put a string heren");
  7. scanf("[%sn]", string);
  8. printf("hey this is what you wrote n");
  9. printf(string);
  10. system("pause");
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement