I'm trying to read from a file and copy it to another file. I am reviewing some codes online and I seem to notice that some declare fread this way:
fread (buffer, 1, 1000, src)
some this way
fread (&buffer, 1, 1000, src)
Let's say I have already declared this:
typedef uint8_t BYTE;
BYTE buffer[1000];
How would those two be different?