hi
simple question:(
its my code
but the program stop working why?Code:#include <iostream>
#include <string>
using namespace std;
struct a{
string test;
};
int main()
{
a *b;
b->test="ds";
}
and what can i do?
i dont want to use *char or sth else it must be string...

