What is size of null class?

Answer Posted / vinay bondade

1 byte

Is This Answer Correct ?    15 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the rules about using an underscore in a c++ identifier?

829


How does the copy constructor differ from the assignment operator (=)?

845


Who made c++?

813


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: "<

1838


Which software is used for c++ programming?

824


What is the difference between the functions memmove() and memcpy()?

855


Difference between pointer to constant and constant pointer to a constant. Give example.

852


Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.

1952


Describe linkages and types of linkages?

769


How a new element can be added or pushed in a stack?

781


What is #include cstdlib in c++?

885


What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor

898


How is computer programming useful in real life?

779


What is the use of typedef?

833


Can java be faster than c++?

873