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 |
What is the default size allocated for array in the statement if size not specified " int a[] "
what is polymorphism?
why we call c++ is object oriented lanaguage
how to tackle technical questions
What is the differances between a abstract calss and interface
Which is faster post increment or pre increment ? and in which cases should u use either - to increase speed?
What are properties in oop?
What is the point of oop?
What is meant by oops concept?
Is html an oop?
WAP to generate 2n+1 lines of the following pattern on the computer screen:
what isthe difference between c structure and c++ class