what is the use of classes in c++;
Answers were Sorted based on User's Feedback
Answer / abhishek karal
In object-oriented programming, a class is a construct that
is used as a blueprint (or template) to create objects of
that class. This blueprint describes the state and behavior
that the objects of the class all share. An object of a
given class is called an instance of the class. The class
that contains (and was used to create) that instance can be
considered as the type of that object, e.g. an object
instance of the "Fruit" class would be of the type "Fruit".
| Is This Answer Correct ? | 21 Yes | 8 No |
Answer / anilkuma
In c++ classes are used for protect data,nothing but we can
provide more secure for data in c++ classes
| Is This Answer Correct ? | 6 Yes | 0 No |
How can we use the preprocessor #if and #elseif.
What is friend function?
What is Hashing and how is it done? Pictorial form?
Why we are use # in begning of programme of c++.
What is coupling in oop?
WHAT IS THE DIFFERENCE BETWEEN OBJECT BASED & OBJECT ORIENTD PROGRAMMING LANGUAGE.(GIVE AT LIST 4 PIONT)
How long to learn object oriented programming?
What are oops methods?
What is the correct syntax for inheritance? 1) class aclass : public superclass 2) class aclass inherit superclass 3) class aclass <-superclass
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.
the difference between new and malloc