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
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
The statement, int(*x[]) () what does in indicate?
what is reason of your company position's in india no. 1.
What is output redirection?
What is the difference between malloc() and calloc() function in c language?
What is a substring in c?
Write a program of advanced Fibonacci series.
What is the explanation for cyclic nature of data types in c?
Explain what are the different file extensions involved when programming in c?
Explain how do you search data in a data file using random access method?
What is actual argument?
Explain how many levels deep can include files be nested?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Why do we need arrays in c?
What is strcmp in c?