Answer Posted / g.j.hemalatha
f(x) is an identifier.No constants is defined in the macro
definition.So the answer is a garbage value.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to declare a variable?
Explain what is the difference between the expression '++a' and 'a++'?
What are the disadvantages of a shell structure?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is the concatenation operator?
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 void is used in c?
write a program to generate address labels using structures?
How do you define a function?
What are qualifiers?
What is a structure member in c?
A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
I heard that you have to include stdio.h before calling printf. Why?
What’s a signal? Explain what do I use signals for?