so i read in integers into an array, how do i fill the empty elements with spaces. i know that they get initialized with that long negative number. do i check if they have that and then fill those elements with spaces?
int* scores = malloc(51 * sizeof(int));
FILE* fp;
char* string = malloc(21 * sizeof(char));
int length;
int* plength = &length;
int number_of_conversions;
long offset = 0;
long* poffset = &offset;
int* scores = malloc(51 * sizeof(int));
scores[50] = '\0';
int total;
int* ptotal = &total;
int i = 0;
this is the array