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

11 , 6, 10

Is This Answer Correct ?    54 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

The __________ attribute is used to announce variables based on definitions of columns in a table?

934


show how link list can be used to repersent the following polynomial i) 5x+2

1878


what are the 10 different models of writing an addition program in C language?

1630


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

2106


What is modeling?

804






What is a substring in c?

767


Is calloc better than malloc?

770


Why do we need functions in c?

727


If jack lies on Mon, Tue Wed and jill lies on Thursday, Friday and Saturday. If both together tell they lied yesterday. So c the given options and then c cos in the given dates one will be saying the truth and one will be lying. I got Thursday as option because jack is saying the truth he lied yest but jill is lying again as he lies on that day.

1975


Does c have class?

809


Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.

1835


What is a structure member in c?

733


what is the significance of static storage class specifier?

1890


What is stack in c?

816


What is difference between Structure and Unions?

849