#ifndef _STUDENT_H_ #define _STUDENT_H_ #define N 256 struct student { char name[N]; int rank; }; #endif