在C++程序中,怎么在主函数中调用一个类中的字符型数组?

2024-12-18 01:52:00
推荐回答(1个)
回答1:

#include // for cin and cout
class student
{
public: //必须是公开的才可以从外部直接访问
char name[20];
};
void main()
{
student a;
cin>>a.name;
cout<}