answersLogoWhite

0

Class

Object

Message

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Integer in c and c plus plus?

One of the built-in datatypes.


What is turbo c data types?

The usual C datatypes, nothing special.


What is composite data type in c?

Composite datatypes are the datatypes which can be constructed with in a program by using prmitive datatypes and other composite types.the act of constructing a composite data type is called composition..............


Which purpose structure is using in c?

structure is a collection of variables of different datatypes.


Data type in data base?

In different languages we have different datatypes . Like in c++ we have int for integers , string for strings . In database we have datatypes, number for storing integer and varchar2 for storing string or characters.Like in languages like c we have datatypes such as char for characters , int for integers etc . In database we have datatype to denote the type of the field example numbers for storing integer, Varchar for characters.


What is a perdefined words in TURBO C?

there are many predefined words in c.. some are void,datatypes,printf,scanf etc


What is similarity among structure union and enum in c language?

all the three are user defined datatypes


Datatypes what r types of datatypes?

short int int long int double float char these are all datatypes


Write abstract class in c plus plus?

An abstract class is any class definition that contains at least one pure-virtual function. class AbstractClass { public: virtual void DoSomething()=0; // Pure-virtual. };


What are different types of primitive datatypes used in c language and their range?

Perhaps the link in the related links box will help you.


Is an abstract class virtual by default?

Unlike abstract class in C++, the abstract class in C# does not have any methods defined as virtual by default. The concept of virtual are not the same between C# and C++, either. Any virtual method must be defined explicitly in C#. Related to abstract methods - interestingly, an abstract class in C# does not have to have any abstract methods. However, the reverse, if a class need to have at least one abstract method, that class must be defined as abstract.


How do C and C plus plus differ in terms of data abstraction and classes and structs?

They differ insofar as C does not use object-oriented programming at all -- there are no classes (only structures), therefore there was nothing to abstract. C++ (which literally means 'the successor to C') is an extension of C that primarily adds object-orientated support to the language. Everything you can do in C you can also do in C++, but with the added benefits of OOP you can do a whole lot more, more easily, including the creation of abstract data types.