Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

x=11

k=11

j=6

Is This Answer Correct ?    4 Yes 20 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain that why C is procedural?

1194


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

1211


How can I trap or ignore keyboard interrupts like control-c?

1118


Explain how do you view the path?

1224


What are the different types of data structures in c?

1221


What does the function toupper() do?

1196


What are qualifiers?

1109


What are qualifiers and modifiers c?

1067


What is c system32 taskhostw exe?

1075


How can I swap two values without using a temporary?

1158


What are runtime error?

1181


What is dynamic dispatch in c++?

1112


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1785


Differentiate between null and void pointers.

1233


In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?

1265