Advertisement
sujonshekh

Sting Traverse

Aug 5th, 2016
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4. int main()
  5. {
  6. char str[100];
  7. gets(str);
  8. int i,j;
  9. for(i=0;i< strlen(str);i++)
  10. {
  11. printf("%c", str[i]);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement