Answer Posted / vignesh1988i
open() is the function created by the user......... which can be used to perform a specific task....
fopen() belongs to FILES..... this is a in built user defined function which is used to open a file which is already existing with the opening mode or create a new file....and which returns a pointer
syntax:
file_ptr=fopen("file name","opening mode");
Is This Answer Correct ? | 2 Yes | 16 No |
Post New Answer View All Answers
Explain continue keyword in c
How can you find the exact size of a data type in c?
how to make a scientific calculater ?
Why can arithmetic operations not be performed on void pointers?
What is the advantage of using #define to declare a constant?
Why use int main instead of void main?
Is javascript written in c?
What is the maximum no. of arguments that can be given in a command line in C.?
Explain the difference between malloc() and calloc() function?
write a program to copy the string using switch case?
Is using exit() the same as using return?
#include
What is the use of function in c?
State the difference between realloc and free.
What is the purpose of sprintf() function?