Structures
Used struct in C Language, since it does not contain class. Same thing as a class.
struct class{
int students;
int prof;
};
struct class now = {32, 1};
If you initialize with a value, all other properties will be initialized to 0. Make sure not to confuse it with Class, which is Object-Oriented Programming.
Use typedef in front of struct to make it easier:
typedef struct class{
int students;
int prof;
} class;
class now = {32, 1};