What is false about the following
A compound statement is
a.A set of simple statments
b.Demarcated on either side by curly brackets
c.Can be used in place of simple statement
d.A C function is not a compound statement.
Answer Posted / bhavitha
A C function is not a compound statement.
so D.
| Is This Answer Correct ? | 15 Yes | 1 No |
Post New Answer View All Answers
If fflush wont work, what can I use to flush input?
How can I handle floating-point exceptions gracefully?
How can I direct output to the printer?
List out few of the applications that make use of Multilinked Structures?
Which one would you prefer - a macro or a function?
What is the default value of local and global variables in c?
What is a function simple definition?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is a wrapper function in c?
Why c is known as a mother language?
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.
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is type qualifiers?
When should the volatile modifier be used?
Why is structure padding done in c?