#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 / manoj
10,6,11
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
How can I open files mentioned on the command line, and parse option flags?
What is the symbol indicated the c-preprocessor?
Are enumerations really portable?
When was c language developed?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Write a c program to build a heap method using Pointer to function and pointer to structure ?
Can stdout be forced to print somewhere other than the screen?
When should a type cast be used?
How #define works?
What is #line used for?
explain what are pointers?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is variables in c?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)