#include "src.h" #include void c2() { FILE *f = fopen(FNAME, "r"); fclose(f); solve( 2, "Opening and closing an existing file", fmtstr("Opened and closed file located at: %s", get_file_path(FNAME))); } int main() { print_header(); c2(); return 0; }