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

11 , 6, 10

Is This Answer Correct ?    54 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are dangling pointers in c?

629


What is context in c?

528


Can two or more operators such as and be combined in a single line of program code?

797


What does the characters “r” and “w” mean when writing programs that will make use of files?

842


What is null pointer constant?

586






what are bit fields in c?

596


Is stack a keyword in c?

626


to find the closest pair

1812


What is the difference between text files and binary files?

664


What is && in c programming?

665


How many main () function we can have in a project?

602


What is difference between main and void main?

614


How does normalization of huge pointer works?

617


Explain modulus operator.

585


What’s a signal? Explain what do I use signals for?

596