I\'m trying to output some string on a txt file by using c program
however, I need to see if the I have the permission to write on the txt file, if not, I need to pr
f = fopen( path, mode ); if( f == NULL ) { perror( path ); }