Is c++ a high level language?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between mutex and binary semaphore?
Why is c++ a mid-level programming language?
What are virtual functions and what is its use?
Which one of the following describes characteristics of "protected" inheritance? a) The base class has access only to the public or protected members of the derived class. b) The derived class has non-public, inheritable, access to all but the private members of the base class. c) The derived class has access to all members of the base class. d) The private members of the base class are visible within the derived class. e) Public members of the derived class are privately accessible from the base class.
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
How new/delete differs from malloc()/free?
What do you mean by function overriding & function overloading in c++?
Is swift faster than go?
What is the purpose of templates in c++?
Can you Mention some Application of C/C++?
What do nonglobal variables default to a) auto b) register c) static
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?