| | Alright, This is confusing. The specification laid out by my prof is: QUOTE a function that receives the address of a C-style, null-terminated string containing the name of the file that holds the prefix table FILE* open(const char filename[]); This function opens the named file for read access and returns the address of the file pointer, if successful; NULL otherwise. However, usually this is how I open files: CODE void readFile (){ FILE* fp = NULL; fp = fopen("file.txt", "r"); } So how do I adopt this? xboxrulz |

