Question: What is the problem with the following code fragment? double scores[100]; double *p = scores; scores[0] = 13.2; free(p);
What is the problem with the following code fragment?
double scores[100];
double *p = scores;
scores[0] = 13.2;
free(p);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
