What is the difference between Class and Structure?

Answer Posted / nikhil jain

Structures are value types; classes are reference types.
Structures use stack allocation; classes use heap
allocation.

A structure must have at least one nonshared variable or
event member; a
class can be completely empty.

Is This Answer Correct ?    4 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Should I learn c or c++ or c#?

559


What is the difference between a type-specific template friend class and a general template friend class?

564


What are the three forms of cin.get() and what are their differences?

635


What is c++ 11 and c++ 14?

594


What are the c++ access specifiers?

777






Why is c++ is better than c?

520


What is the purpose of ios::basefield in the following statement?

794


If a function doesn’t return a value, how do you declare the function?

620


What is class definition in c++ ?

633


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

4859


What is the difference between an external iterator and an internal iterator? Describe an advantage of an external iterator?

642


How do I exit turbo c++?

587


Is turbo c++ free?

627


How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?

646


Which programming language is best?

558