#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
What's a good way to check for "close enough" floating-point equality?
Where are some collections of useful code fragments and examples?
What is array in c with example?
What is the purpose of the preprocessor directive error?
What is c programing language?
Can a variable be both constant and volatile?
What does static variable mean in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What is build process in c?
What are the data types present in c?
Explain how to reverse singly link list.
how to construct a simulator keeping the logical boolean gates in c
What is hash table in c?
difference between native and cross compilers
When should I declare a function?