#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 / sshireesha
12 6 11
| Is This Answer Correct ? | 30 Yes | 9 No |
Post New Answer View All Answers
What are the application of c?
What is wrong with this declaration?
Explain what header files do I need in order to define the standard library functions I use?
How can I remove the leading spaces from a string?
What is a pointer and how it is initialized?
How does pointer work in c?
Is main is a keyword in c?
Explain what are header files and explain what are its uses in c programming?
What is data type long in c?
How can I write functions that take a variable number of arguments?
Explain what is gets() function?
What is 2 d array in c?
Differentiate between functions getch() and getche().
What are the different types of linkage exist in c?
what is the significance of static storage class specifier?