C++ error : ein wert vom typ "const char" kann keiner entität vom Typ "char" zugewiesen werden c++?
Hallo,
ich bin absoluter C++ Anfänger und bekomme die oben gennante Fehlermeldung, woran kann es liegen?
#include <string>
#include <vector>
using namespace std;
class question { public:
string frage[40];
frage[0][0] = "";
private:
};
Programmierung