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

Difference between goto, long jmp() and setjmp()?

1238


What is union and structure in c?

1292


What does 3 periods mean in texting?

1137


What is the difference between fread and fwrite function?

1133


What is the difference between formatted&unformatted i/o functions?

1113


Describe wild pointers in c?

1169


What is the purpose of & in scanf?

1124


How can you draw circles in C?

1198


Explain how do you declare an array that will hold more than 64kb of data?

1502


What is difference between static and global variable in c?

1106


On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area

1170


Differentiate between a for loop and a while loop? What are it uses?

1239


How can I invoke another program or command and trap its output?

1156


Can a void pointer point to a function?

1083


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3745