Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- #include <math.h>
- int main(int argc, char * argv[]) {
- char niza[2000];
- scanf("%s", niza);
- for(int i = 0; i < strlen(niza); i++) {
- printf("%c ", niza[i]);
- }
- }
- /*
- 6
- 2 4 5 7 11 23
- **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement