char a[1000];
char b;
b = cin.get();
cout<<b;
b = cin.get();
cout<<b;
b = cin.get();
cout<<b;
so, i can input values in a[ ] only one once right ???
Then every time i write b=cin.get(); it will only update b ??? suppose i write PARTH then, b=P next time A and so on???