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
Which header file is essential for using strcmp function?
What is mean by data types in c?
What is the difference between array and pointer in c?
Why do we use int main?
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
What is the difference between array and structure in c?
Explain union. What are its advantages?
What is array of structure in c?
Why clrscr is used in c?
What is extern storage class in c?
How can I write functions that take a variable number of arguments?
What happens if header file is included twice?
What do you understand by normalization of pointers?
Can I initialize unions?
What is bubble sort in c?