#define MAX_AREA_SIZE 16
#include
#include
#include
struct faculty {
char *name;
char area[MAX_AREA_SIZE];
int num_students;
};
int main() {
// Declare a struct faculty named p1.
// Initialize p1 to represent Professor Roger Grosse, whose research area
// is ML (Machine Learning). He is supervising 11 graduate students.
struct faculty *p2_pt;
// allocate space for the faculty on the heap
// Set the values of *p2_pt to represent Professor Sheila McIlraith. Her research area
// is KR (Knowledge Representation). She is supervising 11 graduate students.
return 0;
}