Computer Science, asked by Rkaran8245, 1 year ago

Describe the four basic data types in c?

Answers

Answered by batmangle6
6

C has a concept of 'data types' which are used to define a variable before its use. The definition of a variable will assign storage for the variable and define the type of data that will be held in the location.

The value of a variable can be changed any time.

C has the following basic built-in datatypes.

int

float

double

char

Please note that there is not a boolean data type. C does not have the traditional view about logical comparison, but thats another story.

int - data type

int is used to define integer numbers.

   {

       int Count;

       Count = 5;

   }

float - data type

float is used to define floating point numbers.

   {

       float Miles;

       Miles = 5.6;

   }

double - data type

double is used to define BIG floating point numbers. It reserves twice the storage for the number. On PCs this is likely to be 8 bytes.

   {

       double Atoms;

       Atoms = 2500000;

   }

char - data type

char defines characters.

   {

       char Letter;

       Letter = 'x';

   }


Answered by ch45901
1

Answer:

Each variable in C has an associated data type. Each data type requires different amounts of memory and has some specific operations which can be performed over it. Let us briefly describe them one by one:

Following are the examples of some very common data types used in C:

char: The most basic data type in C. It stores a single character and requires a single byte of memory in almost all compilers.

int: As the name suggests, an int variable is used to store an integer.

float: It is used to store decimal numbers (numbers with floating point value) with single precision.

double: It is used to store decimal numbers (numbers with floating point value) with double precision

Similar questions