#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 ? | 20 Yes | 10 No |
Post New Answer View All Answers
How can you increase the size of a dynamically allocated array?
What will be the outcome of the following conditional statement if the value of variable s is 10?
WHICH TYPE OF JOBS WE GET BY WRITING GROUPS .WHEN THE EXAMS CONDUCTED IS THIS EXAMS ARE CONDUCTED EVERY YEAR OR NOT.PLS TELL ME THE ANSWER
what is the role you expect in software industry?
What is the explanation for prototype function in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Explain argument and its types.
Explain what header files do I need in order to define the standard library functions I use?
Explain what are the different data types in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the process to create increment and decrement stamen in c?
What is omp_num_threads?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
largest Of three Number using without if condition?
How #define works?