CBSE BOARD XII, asked by nishant1966, 11 months ago

explain different types of variables in C​

Answers

Answered by adityasingh1722004
2

1  

char

Typically a single octet(one byte). This is an integer type.

2  

int

The most natural size of integer for the machine.

3  

float

A single-precision floating point value.

4  

double

A double-precision floating point value.

5  

void

Represents the absence of type.

Similar questions