#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
What is the difference between volatile and const volatile?
Explain what is the difference between functions abs() and fabs()?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
How can you restore a redirected standard stream?
What is static identifier?
What is the hardest programming language?
What are the types of pointers?
program to convert a integer to string in c language'
What is a loop?
Hai what is the different types of versions and their differences
Explain what are its uses in c programming?
Write a program to print all permutations of a given string.
What is ponter?
Explain Basic concepts of C language?
What are local static variables? How can you use them?