What does the following code snippet demonstrate? #include…
What does the following code snippet demonstrate? #include #include int main() { FILE *fp; fp = fopen(“test.txt”, “a”); if (fp == NULL) { printf(“File not found\n”); return 1; } fprintf(fp, “Doing something with this line.”); fclose(fp); return 0; }
Read Details