What Are The Differences Between A C++ Struct And C++ Class?
Answer Posted / shalesh kumar
The default member and base-class access specifies are different.
This is one of the commonly misunderstood aspects of C++. Believe it or not, many programmers think that a C++ struct is just like a C struct, while a C++ class has inheritance, access specifies, member functions, overloaded operators, and so on. Actually, the C++ struct has all the features of the class. The only differences are that a struct defaults to public member access and public base-class inheritance, and a class defaults to the private access specified and private base-class inheritance.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a dynamic binding in c++?
What does no cap mean?
What are the components of stl?
How do you establish a has-a relationship?
What is an interface in oop?
What is the outcome of cout< a) 16 b) 17 c) 16.5
how to connect with oracle 9i with server in socket program in c/c++
What is virtual methods?
What is stack unwinding?
What is private inheritance?
How does atoi function work?
They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?
What is encapsulation example?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
Show the application of a dynamic array with the help of an example.