#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


Please Help Members By Posting Answers For Below Questions

What is the difference between volatile and const volatile?

735


Explain what is the difference between functions abs() and fabs()?

815


`write a program to display the recomended action depends on a color of trafic light using nested if statments

1862


How can you restore a redirected standard stream?

775


What is static identifier?

881






What is the hardest programming language?

894


What are the types of pointers?

766


program to convert a integer to string in c language'

2172


What is a loop?

780


Hai what is the different types of versions and their differences

1701


Explain what are its uses in c programming?

769


Write a program to print all permutations of a given string.

910


What is ponter?

997


Explain Basic concepts of C language?

808


What are local static variables? How can you use them?

829