#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


Please Help Members By Posting Answers For Below Questions

What does *p++ do? What does it point to?

794


Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......

1940


How to find a missed value, if you want to store 100 values in a 99 sized array?

1051


Write a function that will take in a phone number and output all possible alphabetical combinations

794


How many levels deep can include files be nested?

848






What is sizeof return in c?

774


What is LINKED LIST? How can you access the last element in a linked list?

807


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

2055


Explain the difference between call by value and call by reference in c language?

845


An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

874


Explain how can you avoid including a header more than once?

796


Why do we need volatile in c?

921


What does it mean when a pointer is used in an if statement?

819


Differentiate between new and malloc(), delete and free() ?

869


How can I recover the file name given an open stream or file descriptor?

806