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


main()
{
int x=10,y=15;
x=x++;
y=++y;
printf("%d %d\n",x,y);
}

output??

Answer Posted / sathya.r

Ans: 10,16

Is This Answer Correct ?    91 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is multithreading possible in c?

1070


What are extern variables in c?

1042


What do you mean by dynamic memory allocation in c?

1153


What is define c?

1156


What are the types of c language?

1084


What is the use of pointers in C?

1136


What is the difference between declaring a variable by constant keyword and #define ing that variable?

3442


Can we declare variable anywhere in c?

1034


What is the difference between constant pointer and constant variable?

1280


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

16923


How can you return multiple values from a function?

1171


What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1947


What is a void pointer in c?

1158


Why static is used in c?

1146


Explain what standard functions are available to manipulate strings?

1129