I'm new to programming and I'm starting with c++, so the first program I want to write should take a string of characters and output it to the console afterwards, but the execution isn't working, I can't find the issue.
'#include
#include
#include
using namespace std;
int main()
{
short T;
cin >> T;
char *str;
//cin.clear();
cin.sync();
cin.ignore(1000, '\\');
while(cin >> *str++)
;
cin.sync();
cin.ignore(1000, '\\');
while(*str++ != '\0')
cout << *str;
return 0;
}
'