what is the use of fflush() function?
Answers were Sorted based on User's Feedback
Answer / kamini
the fflush() function is useed for remove the garbage value
of keyboard.
Is This Answer Correct ? | 15 Yes | 5 No |
Answer / varun sahu
the fflush() function is used to remove garbage which is present in the buffer.
Is This Answer Correct ? | 12 Yes | 2 No |
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.
"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 Answers ABC Infotech, ADP, College School Exams Tests, Kovair,
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
Explain the difference between the local variable and global variable in c?
List the difference between a While & Do While loops?
Expand the following LKB BKL FFG
Explain setjmp()?
write a c program to find the square of a 5 digit number and print the result.
5 Answers Accenture, Sasken, Vimukti Technologies,
c program to compute AREA under integral
how to write a c program to print list of fruits in alpabetical order?
What is the difference between #include and #include 'file' ?