printf("%d",(printf("Hello")); What it returns?
Answer Posted / sangeetha
the inner printf statement will print Hello but the outer
printf is %d it will print an integer but we didnt call the
value it will give u the garbage value.and the output of the
program will be hello5.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Why array is used in c?
When the macros gets expanded?
What is the difference between mpi and openmp?
Find MAXIMUM of three distinct integers using a single C statement
What is the difference between a function and a method in c?
Explain about the functions strcat() and strcmp()?
Explain the use of bit fieild.
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.
What is table lookup in c?
Can you tell me how to check whether a linked list is circular?
What is the use of header?
When should I declare a function?
Why main function is special give two reasons?
What is multidimensional arrays
What is an example of structure?