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

what is the value of b
if a=5;
b=++a + ++a

Answer Posted / rd

its 13
initial value: 5

++a : 6
again (++a): 7

so it is (7+6) 13...and there shouldn't be any doubt about it.

Is This Answer Correct ?    14 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why malloc is faster than calloc?

1126


What are identifiers c?

1146


An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?

1300


What are the types of operators in c?

1114


What is structure padding and packing in c?

1128


What are static variables in c?

1136


Explain what is #line used for?

1129


What is difference between arrays and pointers?

1156


Tell us something about keyword 'auto'.

1116


What are the advantage of c language?

1114


given post order,in order construct the corresponding binary tree

2859


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

6404


how to build a exercise findig min number of e heap with list imlemented?

2131


which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above

1791


Can you add pointers together? Why would you?

1193