#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 is calloc()?

617


What is header file in c?

593


Discuss the function of conditional operator, size of operator and comma operator with examples.

666


Explain what is a program flowchart and explain how does it help in writing a program?

637


What is a pragma?

659






What is I ++ in c programming?

609


How to declare a variable?

557


i have a written test for microland please give me test pattern

2169


Can you please explain the scope of static variables?

590


Explain what header files do I need in order to define the standard library functions I use?

641


How can you restore a redirected standard stream?

597


What are loops in c?

538


What is use of null pointer in c?

561


Explain what does the function toupper() do?

625


How do you override a defined macro?

688