Which of these statements are false w.r.t File Functions?
i)fputs() ii)fdopen() iii)fgetpos() iv)ferror()
A)ii B)i,ii C)iii D)iv
Answer Posted / charlee jain
A) ii
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Can a variable be both constant and volatile?
What language is c written?
Why is c faster?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
what is the difference between 123 and 0123 in c?
What are register variables in c?
Should a function contain a return statement if it does not return a value?
What is return type in c?
What is the benefit of using #define to declare a constant?
What is the auto keyword good for?
In c language can we compile a program without main() function?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?