#include <stdio.h> int main() { FILE *fp; fp = fopen("file1", "w"); printf("%d\n", ferror(fp)); return 0; }
0
Previous Question Next Question
Your comments will be displayed only after manual approval.