4)What would be the output?
main()
{
int num=425;
pf("%d",pf("%d",num));
}
a)Comp error
b)4425
c)4253
d)3435
e)none
Answer Posted / aswini
Answer is 4253
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
Why does everyone say not to use gets?
What is break statement?
Why is c called "mother" language?
What is #define?
State the difference between x3 and x[3].
Why is sprintf unsafe?
Under what circumstances does a name clash occur?
Tell me what is the purpose of 'register' keyword in c language?
How can a string be converted to a number?
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.
Explain what is wrong with this statement? Myname = ?robin?;
What does sizeof function do?
What is bin sh c?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?