Code:
#include<stdio.h>


int main (void)
{
FILE* spGrades;
if (!(spGrades = fopen ("BG_Scores.txt", "r")))
        {
        printf("\aError opening student grade file\n");
        return 100;
        }// if open input
fclose(spGrades);


return 0;
}
-Here it is! Hope thats what you wanted. Sorry again about the mess.