#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 / mukul

ans : 11 6 0

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When is the “void” keyword used in a function?

826


Why do we use stdio h and conio h?

631


Difference between Shallow copy and Deep copy?

1564


How is a macro different from a function?

652


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

1903






State the difference between realloc and free.

627


What is the explanation for the dangling pointer in c?

669


using for loop sum 2 number of any 4 digit number in c language

1731


Are local variables initialized to zero by default in c?

545


How can I insert or delete a line (or record) in the middle of a file?

570


What does emoji p mean?

595


Do you know the difference between exit() and _exit() function in c?

605


How can I find the modification date and time of a file?

598


How do you define a string?

649


Write a C program in Fibonacci series.

629