What are 2 ways of exporting a function from a dll?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of Namespace in c++.
Explain shallow copy?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
What does flush do c++?
How do you know that your class needs a virtual destructor?
What is time_t c++?
What does it mean to declare a member variable as static?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
What is endl c++?
the first character in the variable name must be an a) special symbol b) number c) alphabet
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).