#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 / vignesh1988i
i=12
j=6
k=11
| Is This Answer Correct ? | 22 Yes | 5 No |
Post New Answer View All Answers
What is meant by errors and debugging?
How many types of sorting are there in c?
What is maximum size of array in c?
c program to compute AREA under integral
What is pointer in c?
What is pointer to pointer in c with example?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What functions are in conio h?
What are the types of functions in c?
What is clrscr ()?
What is advantage of pointer in c?
Is there anything like an ifdef for typedefs?
Subtract Two Number Without Using Subtraction Operator
Which driver is a pure java driver
Is there a way to compare two structure variables?