#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
What are different types of variables in c?
Is null a keyword in c?
How to throw some light on the b tree?
What is optimization in c?
What is a null string in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
List some of the dynamic data structures in C?
What is the acronym for ansi?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is advantage of pointer in c?
What is static memory allocation? Explain
Can a local variable be volatile in c?
Which is better between malloc and calloc?
What is the deal on sprintf_s return value?
What is union and structure?