#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 / manoj

10,6,11

Is This Answer Correct ?    0 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which node is more powerful and can handle local information processing or graphics processing?

831


What is malloc return c?

603


any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above

649


What is a pointer on a pointer in c programming language?

623


Explain b+ tree?

633






Where are some collections of useful code fragments and examples?

721


how to print the character with maximum occurence and print that number of occurence too in a string given ?

2039


Why is it usually a bad idea to use gets()? Suggest a workaround.

911


How is null defined in c?

655


What is c definition?

753


where are auto variables stored? What are the characteristics of an auto variable?

597


How can I prevent another program from modifying part of a file that I am modifying?

618


explain what is a newline escape sequence?

692


In c language can we compile a program without main() function?

584


How can you allocate arrays or structures bigger than 64K?

687