#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
Are the variables argc and argv are always local to main?
What is string function in c?
What is the use of in c?
swap 2 numbers without using third variable?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
What are the valid places to have keyword “break”?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
When c language was developed?
How will you find a duplicate number in a array without negating the nos ?
Explain what does the format %10.2 mean when included in a printf statement?
What are conditional operators in C?
a c code by using memory allocation for add ,multiply of sprase matrixes
How do you define CONSTANT in C?
What are structural members?