I\'ve been trying to include a structure called \"student\" in a student.h
file, but I\'m not quite sure how to do it.
My student.h
file code c
Okay so three big things I noticed
You need to include the header file in your class file
Never, EVER place a using directive inside of a header or class, rather do something like std::cout << "say stuff";
Structs are completely defined within a header, structs are essentially classes that default to public
Hope this helps!