#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
What is the process of writing the null pointer?
What is the acronym for ansi?
write a program to generate address labels using structures?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What are the disadvantages of external storage class?
Tell me can the size of an array be declared at runtime?
How can I insert or delete a line (or record) in the middle of a file?
What is sizeof int in c?
Which is better pointer or array?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Why is c so powerful?
Why is this loop always executing once?
string reverse using recursion
while initialization of array why we use a[][2] why not a[2][]...?
Why does everyone say not to use scanf? What should I use instead?