Please Help!2. Modify the program to add a function to compute
Please Help!<br/>2. Modify the program to add a function to compute and display the total sales for all the concerts. Support your experimentation with screen captures of executing the new code. #include <stdio.h> #define MAXN 100 // max characters in a group/concert name #define MAXG 5 // max concerts/groups #define MAXC 3 // max categories char group [MAXG][MAXN]; int fans [MAXG][MAXC]; […]