#include int main() { FILE *f = fopen("README", "r"); if (f == NULL) { perror("unable to open file"); return 1; } puts("open success"); fclose(f); return 0; }