C++ COURSE
C++ Structures
Learn C++ programming with EDUHUB Code Hub.
C++ Structures
Structures allow you to group different data types.
struct Student{
string name;
int age;
};
Structures allow you to group different data types.
struct Student{
string name;
int age;
};