Answer Posted / rinal doshi
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 ? | 5 Yes | 7 No |
Post New Answer View All Answers
How to write a code for reverse of string without using string functions?
What is new line escape sequence?
What are c identifiers?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
What are disadvantages of C language.
What is auto keyword in c?
What is register variable in c language?
What are the features of c language?
What are the usage of pointer in c?
#include
What are enums in c?
Explain About fork()?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is the difference between void main and main in c?