There's some way of get an address of a character of a file? Example:
FILE *fr;
char ch;
fr = fopen("text.txt","r");
while (!feof(fr)) {
ch = fgetc(fr);
printf("%c", ch);
}
I want the address of not the variable ch, but of the char stored in ch. Anyone who can help, please can tell me how?