What is a class?
Answers were Sorted based on User's Feedback
Answer / bhagavathi chouhan
a class is a set of objects.for ex define a class birds, it
will contain thec group of birds with diffrent names like
parrot,crow,peacock etc.
| Is This Answer Correct ? | 0 Yes | 1 No |
Why do we use class?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
explain the concepts of oops?
write a c++ code of diagonal matrix.
What is ambiguity in c++
function overridind means and simple program
What is abstraction in oop with example?
How do you explain polymorphism?
What is the different between Applet and Application?
string is a class or data type in java?
Why is destructor used?
What is use of overloading?