What is the difference between class and structure?
Answer Posted / guest
structure is a value type class is reference type,
struct Memory will be on stack and class Memory stored on
Heap,
struct not suports inheritance and class can?
Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
Write a c++ program to display pass and fail for three student using static member function
What is the main feature of oop?
What is interface? When and where is it used?
What is abstraction oop?
Write a program to sort the number with different sorts in one program ??
What is encapsulation in oops?
what type of questions
What does and I oop mean in text?
Why do we use oop?
What makes a language oop?
What is abstraction encapsulation?
Write a program to reverse a string using recursive function?
What causes polymorphism?
design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)