What are function prototypes?
No Answer is Posted For this Question
Be the First to Post Answer
Describe about storage allocation and scope of global, extern, static, local and register variables?
class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list
What is the use of setfill in c++?
Why do we learn c++?
What are the differences between a struct in C and in C++?
What is one dimensional array in c++?
What is a sequence in c++?
What is class invariant?
I want explanation for this assignment: how to connect mysql database using c/c++,please explain this detailly?
What is the protected keyword used for?
Why do we use pointers in c++?
Why do C++ compilers need name mangling?