what are function pointers?
No Answer is Posted For this Question
Be the First to Post Answer
Which programming language should I learn first?
Will rust take over c++?
Is there any difference between dlearations int* x and int *x? If so tell me the difference?
Is c++ a difficult language?
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
Explain what are the sizes and ranges of the basic c++ data types?
How can you find the nodes with repetetive data in a linked list?
What are pointer-to-members? Explain.
Is dev c++ free?
What is a binary file? List the merits and demerits of the binary file usagein C++.
What are single and multiple inheritances in c++?
What is the basic of c++?