Questochango
2012-02-04 13:30:58 UTC
#ifndef STUDENT_H
#define STUDENT_H
#include
class Student
{
private:
char name [30];
int numClasses;
string str1 = "hello";
};
#endif
But whenever I compile it tells me there is a missing type identifier on the line with string. I know I am missing something ridiculously simple can someone please help?