Science Teacher Question:
Please write the general formats for file opening and file closing commands?

Answer:
For Opening:-
☛ fp=fopen(“filename” , “mode”);
☛ where ‘fp’ refers to the file pointer.
☛ ‘filename’ refers to the name of the file to be opened.
☛ ‘mode’ refers to the mode of accessing data.
For Closing:-
☛ fclose(fp); where fp denotes the file pointer.
☛ fp=fopen(“filename” , “mode”);
☛ where ‘fp’ refers to the file pointer.
☛ ‘filename’ refers to the name of the file to be opened.
☛ ‘mode’ refers to the mode of accessing data.
For Closing:-
☛ fclose(fp); where fp denotes the file pointer.
Previous Question | Next Question |
Explain what are the ways of storing data in Files? | Explain what instructional strategies would you use in a Science, Math, Social Studies(or other type of) lesson? |