Ποιο είναι το αποτέλεσμα
του ακόλουθου προγράμματος:
#include <string.h>
#include <stdio.h>
main(void)
{
FILE *pF;
char string[]="Department of Informatics and Communications";
char msg[81];
pF=fopen("file1.dat","w");
fwrite(string,strlen(string),1,pF);
fclose(pF);
pF=fopen("file1.dat","r");
fgets(msg,26,pF);
printf("%s", msg);
fclose(pF);
}