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

void main()
{
int x=25,y=32;
clrscr();
x=x++ + y++;
y=++x + ++y;
printf("%d%d",x,y);
}

Answer Posted / pushpendra

if you put the values x=25 and y=32 so both values will be simply added because there will proceed clrscr() command .
so write answer is 57 ,61.

Is This Answer Correct ?    11 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to check armstrong number in c?

1187


Can you apply link and association interchangeably?

1180


void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }

1791


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

1775


which is conditional construct a) if statement b) switch statement c) while/for d) goto

1269


When should you not use a type cast?

1184


Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?

1065


What are the advantage of c language?

1112


How is pointer initialized in c?

1094


What is difference between union All statement and Union?

1162


How old is c programming language?

1065


pierrot's divisor program using c or c++ code

2286


Why c is called top down?

1221


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

3385


What is the purpose of ftell?

1138