I want to read a file character by character and add to an array.
while(!feof(inputfile)){
chKey = getc(inputfile);
for(int i = 0; i<=51; i++){
chKey = enc[i];
}
}
Since there isn't like a add() function, how do you move the position by 1 and add something to an array in C.
Thanks
drjay