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

10,15

Is This Answer Correct ?    1 Yes 22 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how can you restore a redirected standard stream?

1158


How is actual parameter different from the formal parameter?

1065


Why c is called a middle level language?

1162


Synonymous with pointer array a) character array b) ragged array c) multiple array d) none

1110


Write a program to find factorial of a number using recursive function.

1182


What do you mean by keywords in c?

1202


Explain what are linked list?

1092


How can I get random integers in a certain range?

1127


How are 16- and 32-bit numbers stored?

1328


How do you use a 'Local Block'?

1226


a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if

1201


What is binary tree in c?

1138


write a c program to calculate sum of digits till it reduces to a single digit using recursion

3381


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

1391


What is volatile variable in c with example?

1091