Computer Science, asked by hudanaeem20, 1 year ago

draw a conceptual mapping of data types in c and explain its hierarchy??

Answers

Answered by franktheruler
1

Answer:

A data type can be defined, the type of data a variable will hold.

There are two different types of a datatype in c language. One is the primary data type and another one is derived data types.

Primary data types:

In C integer(int), floating-point(float), character(char) and void are the primary data types.

Derived data types:

Array, structure, union, and pointer are the derived data type.

Different data types :

int or signed int (2 bytes)      -32,768 to 32767

short int (1 byte)                     -128 to 127

long int (4 bytes)                    -2,147,483,648 to 2,147,483,647

Float (4 bytes)                         3.4E-38 to 3.4E+38

double (8 bytes)                      1.7E-308 to 1.7E+308

char  (1 byte)                            -128 to 127

Answered by samairasharma026
6

Answer:

this is the answer mate for the Guinness

Attachments:
Similar questions