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
What is c token?
What is %g in c?
What is the process to generate random numbers in c programming language?
write a program to print data of 5 five students with structures?
Can you assign a different address to an array tag?
Why isn't it being handled properly?
How can I direct output to the printer?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What are the main characteristics of c language describe the structure of ac program?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Is c procedural or functional?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is a good data structure to use for storing lines of text?
What are header files and explain what are its uses in c programming?
Is the exit() function same as the return statement? Explain.