I am trying to use realloc function as making the array bigger as the user entered names. It gives me an error when I add 5. element, the error like : * glibc detected ./a.out: realloc(): invalid next size: 0x00000000017d2010 ** And the code is:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void){
char **mtn = NULL;
char x[30];
int i = 0;
while ( strcmp(gets(x), "finish") ){
mtn = realloc( mtn, i*sizeof(char) );
// mtn[i] = realloc( mtn[i], sizeof(x) ); // tried but didnt work
mtn[i] = x;
i++;
}
puts(mtn[1]);
return 0;
}