Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include<string.h>
- int main()
- {
- char str[100];
- gets(str);
- int i,j;
- for(i=0;i< strlen(str);i++)
- {
- printf("%c", str[i]);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement