Is it possible to get the source code back from binary file?
The code is probably written in C++ which is essentially impossible to decompile to the original source code. Unless you want to spend years reading assembly code, its very unlikely you can get the original code.
Is This Answer Correct ? | 0 Yes | 0 No |
Write a program using GUI concept for the scheduling algorithms in Operating system like SJF,FCFS etc..
What is an incomplete type in c++?
What are inline functions? What is the syntax for defining an inline function?
What is the use of lambda in c++?
Explain the ISA and HASA class relationships. How would you implement each in a class design?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
What are the uses of pointers?
How can a called function determine the number of arguments that have been passed to it?
plz send me National informatics center paper pattern
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?"; } ///
How to defines the function in c++?
How do you initialize a class member, class x { const int i; };