printf("%d",(printf("Hello")); What it returns?
Answer Posted / amit shrivastava
it will show hello5
hello from the inner printf and 5 value return by the outer
printf function,as printf return int value of the string
and in the example there is 5 wrds so the lenght is 5 which
it return.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
Describe how arrays can be passed to a user defined function
Is c object oriented?
Using which language Test cases are added in .ptu file of RTRT unit testing???
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
Do you have any idea how to compare array with pointer in c?
What is the right type to use for boolean values in c? Is there a standard type?
What is the purpose of the statement: strcat (S2, S1)?
How can I use a preprocessorif expression to ?
What are the two forms of #include directive?
How do you determine whether to use a stream function or a low-level function?
What do you understand by friend-functions? How are they used?
What functions are in conio h?
What is the purpose of realloc()?
What are the different types of data structures in c?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none