Hi everyone, I'm new and hope someone can help with my problem. First of all English is not my first languaje so I hope you all can be a little patient with my writing :icon_cheesygrin:
Here's the thing. I'm new to C++, and I'm using Borland 3.1 (this is the teacher's choice so I prefer to work with this compiler, because I will have to use it for the tests), and I simply haven't been able to work with Strings. I have tried these 3 "includes" (I don't really know how they are called :?: ),
#include <string> The compiler gives me an error when I use this one
#include <string.h> No problem when compiling
#include <CString> No problem when compiling
But when I put
string q; or
CString q;
The compiler gives me this 2 errors:
"Undefined symbol 'string' (or 'CString' depending of which one I'm using)" and
"Statement misssing ;"
Any idea? :(