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=20,y=35;
x = y++ + x++;
y = ++y + ++x;
printf("%d %d\n",x,y);
}

Answer Posted / valli

x=57
y=94

Is This Answer Correct ?    29 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program with dynamically allocation of variable.

1183


Why c is called a mid level programming language?

1112


What are the storage classes in C?

1203


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

1268


What is the collection of communication lines and routers called?

1180


explain what are pointers?

1082


What is wrong with this statement? Myname = 'robin';

1393


a program that can input number of records and can view it again the record

1960


Is there a way to switch on strings?

1129


What is c programing language?

1134


Differentiate between Macro and ordinary definition.

1467


#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

6393


How does #define work?

1127


What is character constants?

1231


What is multidimensional arrays

1175