Computer Science, asked by gaganameera7367, 10 months ago

The memory space taken by a char data type in c is a. 1 byte b. 2 bytes c. 4 bytes d. 8 bytes

Answers

Answered by dracula2
5

Answer:

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

a. 1 byte

Answered by smartbrainz
0

The memory space taken by a char data type in c is 1 byte.

Option (a)

C programming language allows use of data types for storing values. A programmer can use these data types to declare values appropriate to the kind of data.

C allows use of different data types like primary, derived and user-defined data types.

The Char data type takes 1 byte of memory space(8 bits). This data type can hold both negative and positive values.

The range of values that char data type can store is -128 to 127.

To know more about C programming language,visit:

https://brainly.in/question/6638249

Similar questions