Guest User

Untitled

a guest
Oct 16th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. { char a[5];
  4. gets(a); // or even scanf("%s", a); does the same
  5. puts(a);
  6. return 0;
  7. }
Add Comment
Please, Sign In to add comment