0
votes
1answer
119 views
C - Excess elements in array
Hey,
I am learning C and I am playing around with pointers and arrays. I am trying to create an array of pointers with the code below:
const int NUM_P = 50; // Line 10
char *pS[NUM_P] = { NULL }; …
