Jump to content
xisto Community
Sign in to follow this  
xboxrulz1405241485

Opening Files With As A Function?

Recommended Posts

Alright,

This is confusing. The specification laid out by my prof is:

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:
void readFile (){FILE* fp = NULL;fp = fopen("file.txt", "r");}

So how do I adopt this?

xboxrulz

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.