#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 / sunil v r
11,6,11
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
How does normalization of huge pointer works?
Give differences between - new and malloc() , delete and free() ?
How can I call fortran?
Explain what is the difference between a free-standing and a hosted environment?
In C, What is the #line used for?
What is %s and %d in c?
Explain how can I make sure that my program is the only one accessing a file?
What are keywords in c with examples?
What are the back slash character constants or escape sequence charactersavailable in c?
can any one tel me wt is the question pattern for NIC exam
Describe dynamic data structure in c programming language?
what is the function of pragma directive in c?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
hi any body pls give me company name interview conduct "c" language only
Is struct oop?