Hello
I am using std::string variable of huge length.
Whenever I run the code on XCode, the variable gets trimmed at 101 characters.
The same code on Visual Studio works fine
Sample
std::string variable = "1111111....1a11"; //Say it has more than 101 characters where 'a' represents 101 character
My strings gets trimmed at 101 character.
Same code in VS Project is working fine.
Can anyone help me in this
~Tarun
I am using std::string variable of huge length.
Whenever I run the code on XCode, the variable gets trimmed at 101 characters.
The same code on Visual Studio works fine
Sample
std::string variable = "1111111....1a11"; //Say it has more than 101 characters where 'a' represents 101 character
My strings gets trimmed at 101 character.
Same code in VS Project is working fine.
Can anyone help me in this
~Tarun