can anybody tell me the difference between structures in c and structures in
c++?
c++?
struct Student {
char name[20]; // student name
int age; // student age
int course_code; // institutions course code
int course_year; // year of course
};
Comment