DATA TYPES

In the C programming language, data types are used to define the types of data that variables can hold. C provides several built-in data types to handle different kinds of values. Here are some of the basic data types in C:

1.int:it is a numeric data type.

int number=35;

2.float:it is decimal value data type.

float number=2.50;

3.char:it’s an english alphabets.

char grade=’A’;

4.double:its size is bigger than float.

double bigNumber=234567.456;

5.string:it’s a combination of char.

char name[]=”vikas”;