Answer Posted / vadivel
A Class is a blueprint of object.
or
class are units of code and data, which can be used as
block boxs(called object).
Object:- Instance of class is called object.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is a memory leak c++?
What are the restrictions apply to constructors and destructors?
Where can I run c++ program?
What is the difference between the compiler and the preprocessor?
Differentiate between a template class and class template in c++?
Write a recursive program to calculate factorial in c++.
Is dev c++ free?
What do you understand by pure virtual function? Write about its use?
Is dev c++ a good compiler?
Is map ordered c++?
Define a nested class.
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Can we specify variable field width in a scanf() format string? If possible how?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
How would you use qsort() function to sort an array of structures?