#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 / pawan
10 5 0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is the use of a semicolon (;) at the end of every program statement?
What are the complete rules for header file searching?
How do you print an address?
largest Of three Number using without if condition?
I need previous papers of CSC.......plz help out by posting them.......
What are the key features in c programming language?
What is identifiers in c with examples?
How can I write functions that take a variable number of arguments?
What is #include stdlib h?
Explain what is wrong with this program statement? Void = 10;
How do I use void main?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Explain the difference between getch() and getche() in c?
how many errors in c explain deply
What is the size of structure in c?