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

ans : 11 6 0

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does typedef struct mean?

1119


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

1733


How can I insert or delete a line (or record) in the middle of a file?

1024


What is the difference between malloc() and calloc()?

1883


how to find anagram without using string functions using only loops in c programming

3203


write a program to create a sparse matrix using dynamic memory allocation.

4908


What is the purpose of type declarations?

1125


Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.

2089


How pointers are declared?

969


What is a scope resolution operator in c?

1290


Write the control statements in C language

1223


How to delete a node from linked list w/o using collectons?

2791


Can an array be an Ivalue?

1105


Write a program to check prime number in c programming?

1104


What is a file descriptor in c?

1144