#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 / sumi
11 , 6, 10
| Is This Answer Correct ? | 54 Yes | 32 No |
Post New Answer View All Answers
What are the different types of objects used in c?
Why header files are used?
What are predefined functions in c?
What is meant by operator precedence?
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What does p mean in physics?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How do shell structures work?
What are dangling pointers? How are dangling pointers different from memory leaks?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
What is the importance of c in your views?
Do you know null pointer?
Is null always equal to 0(zero)?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion