Can I learn c++ without learning c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the differences between a struct in C and in C++?
How many types of classes are there in c++?
What is a mutex and a critical section.Whats difference between them?How do each of them work?
why can't we declare data member of class auto register or extern
Is c++ high level programming language?
Who created c++?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.
How is memory managed in C++?
an integer constant must have atleast one a) character b) digit c) decimal point