Who calls main function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the hardest coding language to learn?
Write about the access privileges in c++ and also mention about its default access level?
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
What is flush () in c++?
Is main a class in c++?
What does override mean in c++?
How to allocate memory dynamically for a reference?
What is the difference between containment and delegation?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
What are destructors?
Are php strings immutable?
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring