#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


Please Help Members By Posting Answers For Below Questions

Write a program to swap two numbers without using a temporary variable?

601


What is the difference between if else and switchstatement

1309


what is the significance of static storage class specifier?

1656


What does char * * argv mean in c?

621


What is #include cctype?

574






What is the scope of static variable in c?

530


What kind of structure is a house?

549


Explain how do you generate random numbers in c?

618


What is string in c language?

617


Can a pointer be static?

615


How is pointer initialized in c?

581


Do variables need to be initialized?

616


What is LINKED LIST? How can you access the last element in a linked list?

629


When can a far pointer be used?

584


What are the advantages of c language?

662