What is the exit function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by inheritance in c++? Explain its types.
Can c++ be faster than c?
Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?
Explain dangling pointer.
What is difference between n and endl in c++?
Who was the creator of c++?
What is an inline function in c++?
class X { public: int x; static void f(int z); }; void X::f(int y) {x=y;} What is the error in the sample code above? a) The class X does not have any protected members. b) The static member function f() accesses the non-static z. c) The static member function f() accesses the non-static x. d) The member function f() must return a value. e) The class X does not have any private members.
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
What problems might the following macro bring to the application?
What is the purpose of the noexcept keyword?
In c++, what is the difference between method overloading and method overriding?