#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 / pawan
10 5 0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How do you write a program which produces its own source code as output?
Write a program to print fibonacci series without using recursion?
What is the use of a conditional inclusion statement in C?
What is c language in simple words?
What is the Purpose of 'extern' keyword in a function declaration?
What is operator promotion?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Write a program to swap two numbers without using third variable in c?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How do you list a file’s date and time?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
List out few of the applications that make use of Multilinked Structures?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Why does the call char scanf work?
What is the significance of an algorithm to C programming?