Computer Science, asked by aldwynevillaverde65, 5 months ago

which of the following is not a basic data type in C language?
a) float
b) int
c) real
d) char

Answers

Answered by suansh96
1

Answer:c real

Explanation:please mark as brainliest

Answered by preeti353615
0

Answer:

real is not a basic data type in C language

Explanation:

In C, each variable has a corresponding data type. Each data type necessitates a distinct amount of memory and has its own set of operations that can be applied to it.

The following are some examples of typical data types in C:

  • char: The most fundamental data type in C is char. In virtually all compilers, it stores a single character and requires a single byte of memory.
  • int: An int variable is used to store an integer, as the name suggests.
  • float: It's used to store single-precision decimal numbers (numbers with floating point values).
  • double: It  is used to store decimal numbers (numbers with a floating point value).
Similar questions