【1】C language student management system of C++ grammar and data structure to C++ student management system

Define the CStudent class in C++

file name:Student.h

typedef struct SUser
{
   
    
    
	int nNumb;
	char sName[20];
	float fMath;
}DATA;

typ

Guess you like

Origin blog.csdn.net/wlwdecs_dn/article/details/111658298