#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
What is unsigned int in c?
What is C language ?
Describe static function with its usage?
What are the advantages of using Unions?
What is logical error?
Are the expressions * ptr ++ and ++ * ptr same?
Where does the name "C" come from, anyway?
What is double pointer in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
Is flag a keyword in c?
What is the purpose of the preprocessor directive error?
How can I change their mode to binary?
How can I change the size of the dynamically allocated array?
FILE PROGRAMMING
Explain the difference between structs and unions in c?