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.
student.h
My student.h file code c
Try this new source :
#include struct Student { std::string lastName; std::string firstName; };
#include "student.h" struct Student student;