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 |
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
Tell me is null always defined as 0(zero)?
Explain bit masking in c?
Why do we need a structure?
What are keywords c?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Create a simple code fragment that will swap the values of two variables num1 and num2.
Explain how do you use a pointer to a function?
what is the use of ‘auto’ keyword?
What is the difference between fork() and vfork()?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above