What are the different data types available in “C‟?
Answers
Answered by
3
Answer:
Main types. The C language provides the four basic arithmetic type specifiers char, int, float and double, and the modifiers signed, unsigned, short, and long. The following table lists the permissible combinations in specifying a large set of storage size-specific declarations
Answered by
2
C language supports 2 different type of data types: These are fundamental data types in C namely integer ( int ), floating point ( float ), character ( char) and void. Derived data types are nothing but primary datatypes but a little twisted or grouped together like array, stucture, union and pointers.
Similar questions