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

12 6 11

Is This Answer Correct ?    70 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is s or c?

591


difference between Low, Middle, High Level languages in c ?

1630


List the difference between a "copy constructor" and a "assignment operator"?

578


What is pre-emptive data structure and explain it with example?

3203


How is a pointer variable declared?

588






What is typeof in c?

601


What is register variable in c language?

596


What is a constant and types of constants in c?

598


Why we write conio h in c?

561


what is the role you expect in software industry?

1649


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

643


Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

1589


how many key words availabel in c a) 28 b) 31 c) 32

631


Write a program to reverse a linked list in c.

639


Write a program to print “hello world” without using semicolon?

669