#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
Difference between goto, long jmp() and setjmp()?
What is union and structure in c?
What does 3 periods mean in texting?
What is the difference between fread and fwrite function?
What is the difference between formatted&unformatted i/o functions?
Describe wild pointers in c?
What is the purpose of & in scanf?
How can you draw circles in C?
Explain how do you declare an array that will hold more than 64kb of data?
What is difference between static and global variable in c?
On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area
Differentiate between a for loop and a while loop? What are it uses?
How can I invoke another program or command and trap its output?
Can a void pointer point to a function?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.