Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <iostream>
- #include <string.h>
- using namespace std;
- int main() {
- char c[10];
- gets(c); // Read all, what you Write at the keyboard
- int tm = strlen(c);
- for(int i=0;i<tm;i++)
- cout<<c[i]<<endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement