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

output : x=10;
y=16;

Is This Answer Correct ?    20 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the application of void data type in c?

1237


With the help of using classes, write a program to add two numbers.

1083


When was c language developed?

1260


Why & is used in c?

1248


Tell us bitwise shift operators?

1147


Who invented b language?

1476


What is the purpose of 'register' keyword in c language?

1076


How many main () function we can have in a project?

1157


Can a pointer be static?

1134


What is malloc() function?

1235


What are keywords c?

1097


What are types of structure?

1173


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

3150


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

1264


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

2150