+ 2
What is data type
C
4 Answers
+ 3
It is all in the tutorial you barely started to read.
Try a bit harder!
+ 1
Ok thanks
+ 1
The data-type in a programming language is the collection of data with values having fixed meaning as well as characteristics. Some of them are an integer, floating point, character, etc. Usually, programming languages specify the range values for given data-type.
C Data Types are used to:
Identify the type of a variable when it declared.Identify the type of the return value of a function.Identify the type of a parameter expected by a function.
ANSI C provides three types of data types:
Primary(Built-in) Data Types:
void, int, char, double and float.Derived Data Types:
Array, References, and Pointers.User Defined Data Types:
Structure, Union, and Enumeration.
0
experience is the best teacher, please use Google for things like this, it will enhance your result finding skills, and try start the tutorial as said by HonFu