What is the difference between Class and Structure?

Answer Posted / vadivel

i. Structure are value type where as class are reference
type.
ii. Structure are default public where as class are default
private.
iii. 'this' pointer will work only in class.

Is This Answer Correct ?    395 Yes 78 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

the maximum length of a character constant can be a) 2 b) 1 c) 8

595


What is data type in c++?

547


Explain the static storage classes in c++.

699


Which is the best c++ software?

600


What is a far pointer? where we use it?

609






Is c++ fully object oriented?

550


What does iomanip mean in c++?

597


Why do we need c++?

593


Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.

5892


What is enum class in c++?

702


Explain the register storage classes in c++.

662


What is using namespace std in c++?

603


What is the standard template library (stl)?

616


how to connect with oracle 9i with server in socket program in c/c++

1844


write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters

4847