Why c++ is faster than java?
No Answer is Posted For this Question
Be the First to Post Answer
Write a recursive program to calculate factorial in c++.
Describe about storage allocation and scope of global, extern, static, local and register variables?
What is const in c++?
What is class and structure in c++?
What is an undefined reference/unresolved external symbol error and how do I fix it?
Explain how an exception handler is defined and invoked in a Program.
write a C++ programming using for loop: * * * * * * * * * *
What are manipulators in c++ with example?
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.
What is the difference between static link library and dynamic link library?
Inline parameters : What does the compiler do with the parameters of inline function, that can be evaluated in runtime ?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?