I need some way to create N variables(number greater than 1) by for
?
for example, something like that:
int N=1000;
for(int i=0; i < N; i++){
char* var_i = malloc(sizeof(1));
}
NOTE: I know that the code above is not working, I wrote it just for explain my intent.