#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 is c system32 taskhostw exe?
What do you mean by invalid pointer arithmetic?
Difference between pass by reference and pass by value?
In a switch statement, explain what will happen if a break statement is omitted?
What is anagram in c?
What are global variables and explain how do you declare them?
What are all different types of pointers in c?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Why is void main used?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
Is c a great language, or what?
What is the best organizational structure?
What is bin sh c?