Advertisement
Josif_tepe

Untitled

Jan 16th, 2024
660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <ctype.h>
  3. #include <string.h>
  4. int main() {
  5.     char s[1000];
  6.     scanf("%s", s);
  7.  
  8.     for(int i = 0; i < strlen(s); i++) {
  9.         printf("%c ", s[i]);
  10.     }
  11.  
  12.     return 0;
  13. }
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement