#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 / mukul
ans : 11 6 0
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What are the keywords in c?
Hi can anyone tell what is a start up code?
Define circular linked list.
What is a structure member in c?
What is c variable?
What is pointer to pointer in c with example?
What are valid signatures for the Main function?
What is a pointer in c?
How can you read a directory in a C program?
Explain what is the difference between text files and binary files?
how to build a exercise findig min number of e heap with list imlemented?
What do you know about the use of bit field?
Are local variables initialized to zero by default in c?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?