How would you call C functions from C++ and vice versa?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

can any one help to find a specific string between html tags which is changed to a sting.. weather.html looks (for location) is <location>somewhere</location> #include <iostream> #include <fstream> #include <string> 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: "<<location << endl; cout << "Temperature: " << temperature << endl; system("pause"); } string find_field(string myPage,string find_string){ int temp=myPage.find(find_string); if(temp!=string::npos) { cout << "Match found at " << temp << endl; } return "found?"; } ///

0 Answers  


Which is the best c++ compiler?

0 Answers  


Which software is used to run c++ program?

0 Answers  


Why are arrays usually processed with for loop?

0 Answers  


Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?

0 Answers  






State the difference between delete and delete[].

0 Answers  


What is a float in c++?

0 Answers  


What is #include cmath?

0 Answers  


Under what conditions is multiple inheritance not recommended?

1 Answers  


what is a class? Explain with an example.

0 Answers  


What is the difference between "calloc" and "malloc"?

9 Answers   ADP,


Is it possible to provide special behavior for one instance of a template but not for other instances?

0 Answers  


Categories