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

11,15

Is This Answer Correct ?    3 Yes 19 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do I determine whether a character is numeric, alphabetic, and so on?

1086


Can math operations be performed on a void pointer?

975


What are the 4 types of unions?

991


What is a macro, and explain how do you use it?

1021


What is advantage of pointer in c?

1127


What is wrong with this initialization?

958


a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list

968


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

1205


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

2265


What is restrict keyword in c?

1053


What is context in c?

887


What is meant by operator precedence?

1098


what do you mean by inline function in C?

1011


How can I read data from data files with particular formats?

1006


What type of function is main ()?

1000