// Live Assignment 1 demo of 2D array and structs // Anosua Roy z5264396 // 2022-03-09 #include struct location { char occupier; int points; }; int main(void) { struct location map[SIZE][SIZE]; map[3][4].occupier = 'M'; map[3][4].points = -3; return 0; }