#define MAX(x,y) (x) > (y) ? (x) : (y)
main()
{
int i = 10, j = 5, k = 0;
k = MAX(i++, ++j);
printf("%d %d %d", i,j,k);
}
what will the values of i , j and k?
}
Answer Posted / sshireesha
12 6 11
Is This Answer Correct ? | 30 Yes | 9 No |
Post New Answer View All Answers
What does *p++ do? What does it point to?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
How to find a missed value, if you want to store 100 values in a 99 sized array?
Write a function that will take in a phone number and output all possible alphabetical combinations
How many levels deep can include files be nested?
What is sizeof return in c?
What is LINKED LIST? How can you access the last element in a linked list?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain the difference between call by value and call by reference in c language?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Explain how can you avoid including a header more than once?
Why do we need volatile in c?
What does it mean when a pointer is used in an if statement?
Differentiate between new and malloc(), delete and free() ?
How can I recover the file name given an open stream or file descriptor?