#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
x=11
k=11
j=6
| Is This Answer Correct ? | 4 Yes | 20 No |
Post New Answer View All Answers
What are inbuilt functions in c?
What should malloc() do?
Do array subscripts always start with zero?
How can I implement a delay, or time a users response, with sub-second resolution?
Place the #include statement must be written in the program?
Does c have circular shift operators?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Why do we use main function?
Explain the process of converting a Tree into a Binary Tree.
Why shouldn’t I start variable names with underscores?
Are comments included during the compilation stage and placed in the EXE file as well?
When is the “void” keyword used in a function?
What is I ++ in c programming?
What is void c?
What is wrong with this program statement? void = 10;