Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5.     printf("input a string :\n");
  6.     char str [6];
  7.     scanf("%s", str);
  8.     printf(str);
  9.     return 0;
  10. }