7. Identify the correct argument for the function call
fflush() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
Answer Posted / saurabh pandey
d
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Do you know the use of 'auto' keyword?
The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.
Why is C language being considered a middle level language?
Write a factorial program using C.
Why is c called c?
What is static and volatile in c?
In c language can we compile a program without main() function?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
What is main return c?
Can the size of an array be declared at runtime?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
What is struct node in c?
What is a stream?
Explain the difference between getch() and getche() in c?
What is a stream in c programming?