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 are the total number of lines written by you in C/C++?
What is the most complicated or valuable program written in
C/C++?

Answer Posted / sahadev

depend upon the available memory in the ram,it may be one
line or more

Is This Answer Correct ?    5 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is :: operator in c++?

991


What are destructors?

945


What is the difference between the indirection operator and the address of oper-ator?

1059


How would perform Pattern Matching in C++?

1176


Is it possible to have a recursive inline function in c++?

979


What are c++ variables?

1007


How do I get good at c++ programming?

1088


Give 10 points of differences between C & C++.

1088


Write a program using display() function which takes two arguments.

1013


Is c++ vector a linked list?

950


Why can’t you call invariants() as the first line of your constructor?

960


When is dynamic checking necessary?

1046


Explain selection sorting?

1021


What is constructor c++?

1067


can any one help to find a specific string between html tags which is changed to a sting.. weather.html looks (for location) is somewhere #include #include #include using namespace std; string find_field(string myPage,string); int main (void) { string page, line, location, temperature; ifstream inputFile("weather.xml"); while(getline(inputFile, line)) { page.append(line); line.erase(); } // Now page is a string that contains the whole xml page // Here you need to write something that finds and // extracts location and temperature from the XML // data in the string page and stores them in // the strings location and temperature respectively location=find_field(page,"location"); temperature=find_field(page,"temp_c"); cout << "Location: "<

2006