Ray
2013-01-12 02:24:00 UTC
I'm new to arrays and pointers. the fact that English isn't my native language makes it all worse..
have been reading an article that brings fegts, arrays and pointers together. here is the command:
char *fgets(char *restrict s, int n, FILE *restrict stream);
and here the description:
"The fgets() function shall read bytes from stream into the array pointed to by s, until n-1 bytes are read, or a
I'm fully lost...which one is the array's name now? can you describe in your own words what this command line says?
thanks