Computer Science, asked by Sonynikku, 11 months ago

explain basic data types of C language​

Answers

Answered by Bhayt
2

Answer:

language supports 2 different type of data types:

Primary data types:

These are fundamental data types in C namely integer(int), floating point(float), character(char) and void.

Derived data types:

Derived data types are nothing but primary datatypes but a little twisted or grouped together like array, stucture, union and pointer. These are discussed in details later.

Answered by roopa2000
0

Answer:

Data types define the semantics and properties of data elements stored in the C programming language. They are expressed in the language syntax as memory locations or variable declarations. The kinds of operations or procedures used to process data pieces are also determined by data types.

Explanation:

The most fundamental data type in C is char. In practically all compilers, it saves a single character and uses a single byte of memory. An integer is stored in an int variable, as its name indicates. Decimal numbers (numbers having floating point values) are stored as single-precision floats.

The C programming language offers syntax to create an array, compound kinds, and fundamental arithmetic types like integer and real number types. Headers for the C standard library contain definitions of support types with extra attributes, such as providing storage with precise size, independent of the language implementation on particular hardware systems. These definitions are to be utilized via including directives.

Uses for C's Data Types

In the C programming language, "data type" refers to a complex system we use to define different functions or variables in a program. Here, we decide the storage space it takes up and how the recorded bit pattern will be interpreted based on the type of variable included in the program.

The type of data a variable may hold, such as integer, floating-point, character, etc., is specified by its data type.

Types of Data Types in C

  • Basic Data Type  
  • Derived Data Type  
  • Enumerated Data Type  
  • Void Data Type  
  • Bool Type

learn more about it

https://brainly.in/question/23491713

https://brainly.in/question/23483417

Similar questions