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 strcture

i++ i ++i answer to this i=5 what is the out put

Answers were Sorted based on User's Feedback



what is strcture i++ i ++i answer to this i=5 what is the out put..

Answer / bala

My answer is
1.
#include<iostream>
using namespace std;
int main()
{
int i = 5;
cout << ++i << i << i++ << endl;
return 0;
}
ANS:765

2.
#include<iostream>
using namespace std;
int main()
{
int i = 5;
cout << ++i ;
cout << i ;
cout << i++ << endl;
return 0;
}
ANS:666

Is This Answer Correct ?    4 Yes 0 No

what is strcture i++ i ++i answer to this i=5 what is the out put..

Answer / shivendra

The o/p will be as follows:-

666

reason:- in c++ in cascading the processing will be from
RHS. hence first "++i" will be executed and gives value 6.
after that "i" is executed as 6 and finally "i++" which will
also give 6.

one thing to notice here is that printing will be as usual
i.e. from left to right. So if the structure was "++i i i++"
then o/p will be 765

Is This Answer Correct ?    5 Yes 2 No

what is strcture i++ i ++i answer to this i=5 what is the out put..

Answer / subbu

566

Is This Answer Correct ?    1 Yes 1 No

what is strcture i++ i ++i answer to this i=5 what is the out put..

Answer / osama

The answer is undefined since you are modifying a built in
type in sequence without a sequence point in between.

Is This Answer Correct ?    0 Yes 1 No

what is strcture i++ i ++i answer to this i=5 what is the out put..

Answer / diliprajug

my answer is 755........

Is This Answer Correct ?    0 Yes 1 No

what is strcture i++ i ++i answer to this i=5 what is the out put..

Answer / antony

The output is 7

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More STL Interview Questions

What is stl stack?

0 Answers  


What is a stl vector?

0 Answers  


How the STL's are implemented, What the difference between templates and STL?

1 Answers   Symphony,


What are the symptoms of stl?

0 Answers  


What two types of containers does the stl provide?

0 Answers  


What is meant by stl in c++?

0 Answers  


write a program that input four digit number and find how many 7 that number contains

4 Answers  


Is there any error below, its a code to delete all entires from a map #include <map> #include iostream.h int main() { int i =0; map <int, char> TestMap; while(i<3) { TesMap.insert(TestMap::value_type(i,Test)); i++; } typedef map<int, char> :: iterator mapIter =TestMap.begin(); if(mapIter!=TestMap.end()) { TestMap.erase(mapItrer); ++mapIter; } return 0; }

0 Answers  


5. Write c++ function that would intake a string and return the number of occurrences of a given character in that sring Ex:- if the word is “Colombo” and count the occurrences of the letter “o” the function would return 3

1 Answers  


what is use of for loop?

9 Answers   Wipro,


I am doing my BS.c MATHS CAN I ABLE TO JOIN IN NIIT?

2 Answers  


Explain how to insert a hyperlink in to an Excel worksheet and save a Word document as a Web page.

1 Answers  


Categories