Why c++ is not a pure oop language?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is class definition in c++ ?
If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?
Write a Program for read a line from file from location N1 to N2 using command line arguments. Eg:exe 10 20 a.c
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
What is this weird colon-member (" : ") syntax in the constructor?
What is input operator in c++?
if there is binary tree which one is the easiest way to delete all child node?
What is data abstraction? How is it different from data encapsulation?
Which software is used to run c++ program?
print first nodd numbers in descending order
What is c++ redistributable?
Arrange Doubly linked list in the ascending order of its integral value and replace integer 5 with 7?