can we make array of strings
can we make array of strings
1 2
|
#include<string.h>
string asd[10];
|
Yes, however the string header is called string, not string.h.
so you want to say we can do this
Yes you can but it should really look more like this:
1 2 3
|
#include <string>
std::string asd[10];
|
thx alot bro
Topic archived. No new replies allowed.