printf("%d",(printf("Hello")); What it returns?
Answer Posted / vikas pawar
printf("%d",(printf("Hello"));
Result is Hello5
Inner printf prints Hello and outer printf gives length of
string i.e. 5
| Is This Answer Correct ? | 69 Yes | 8 No |
Post New Answer View All Answers
What is a union?
How do you use a pointer to a function?
How many levels of pointers have?
What is the right type to use for boolean values in c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Explain what is the best way to comment out a section of code that contains comments?
What does sizeof return c?
write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.
What is the difference between far and near in c?
What is static and volatile in c?
What is pointer to pointer in c with example?
What is the use of getchar() function?
What is #line?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
what is the structure pointer?