answersLogoWhite

0


Best Answer

short int

int

long int

double

float

char

these are all datatypes

User Avatar

Wiki User

16y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

a data types is a type of sytem

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Datatypes what r types of datatypes?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

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..............


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.


What is a perdefined words in TURBO C?

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


Do the primitive datatypes in java have objects?

No Primitive data types do not have objects. As of Java 1.5, all primitive types in Java have "wrapper" classes. These classes serve two purposes: # They keep all type-specific methods together in one place. # They allow primitive types to be used in situations which take advantage of generics (also introduced in Java 1.5).


Explain in detail datatype supported in 'C plus plus ' language?

char: A one-byte integer with implementation-defined signedness.signed char: A signed one-byte integer.unsigned char: An unsigned one-byte integer.wchar_t: A wide character of implementation-defined size and signedness.short: A signed integer with at least 16 bits.unsigned short: An unsigned integer with at least 16 bits.int: A signed integer with at least 16 bits.unsigned int: An unsigned integer with at least 16 bits.long: A signed integer with at least 32 bits.unsigned long: An unsigned integer with at least 32 bits.long long: A signed integer with at least 64 bits.unsigned long long: An unsigned integer with at least 64 bits.float: A floating-point number with 32 bits of precision.double: A floating-point number with 64 bits of precision.long double: A floating-point number with 80-96 bits of precision.

Related questions

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..............


How does structure differ from an array?

structure is a collection of dissimilar datatypes whereas array is collection of similar datatypes.....


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.


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.


Integer in c and c plus plus?

One of the built-in datatypes.


What are the abstract datatypes in c plus plus?

Class Object Message


Which purpose structure is using in c?

structure is a collection of variables of different datatypes.


What are the different datatypes in c plus plus?

There are far too many to provide a comprehensive list -- and new datatypes are being created all the time. However, datatypes can be split into two broad categories: built-in types and user-defined types. The built-in types include all the primitive datatypes inherited from C (including int, long, short, char, float, etc), which can be signed or unsigned and are often called intrinsic types. Built-in types also include the containers found in the standard template library (STL), including string, vector and list, along with their associated iterators. To make use of the STL types, you must include the appropriate library headers. User-defined types are those you define yourself, typically class, struct or union definitions, as well as enums and typedefs. User-defined types also include those types provided by a third-party, excluding the built-in types. Since user-defined types are not strictly part of the language, and new types are created every day, it would be impossible to list them all.


Difference between char and varchar datatypes?

Char is fixed length, while Varchar is variable length.


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

all the three are user defined datatypes


Is array is structure or not?

Array is not a struct. Array only has one datatype, struct has arbitrary different datatypes.