What are the differences between a struct in C and in C++?

Answer Posted / shakti singh khinchi

In C, structures does not support "virtual" mechanism like
virtual functions whereas C++ structures supports virtual
mechanism like classes.

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Show the application of a dynamic array with the help of an example.

584


What does new return if there is insufficient memory to make your new object?

584


What is the exit function in c++?

539


What are the uses of typedef in a program?

614


Define a constructor?

589






What is ctime c++?

579


What are separators in c++?

623


What are signs of manipulation?

587


State two differences between C and C++.

610


A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.

1744


What is a null object in c++?

633


Is it possible for a member function to use delete this?

572


What does namespace mean in c++?

555


Which is best c++ or java?

613


What is meant by const_cast?

648