R
Q. Choose a correct statement about C file operation program?
int main() { FILE *fp; char ch; fp=fopen("readme.txt","r"); while((ch=fgetc(fp)) != EOF) { printf("%c",ch); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The format identifier ‘%i’ is also used for _____ data type?
Q. Dynamic memory management functions are defined in ______ header file
Q. What are Nibble, Word and Byte in computer language.?
Q. Which of the following is not an operator in C?
Q. Which gcc option is used to generate assembly code from C code on Linux?
Q. What is the output of a C program with functions.?
Q. What is the output of the following C program?
Discusssion
Login to discuss.