Datatypes in "C"????????????????????????????
Answers
Answered by
2
Hey there !!!!
_____________________________________________________
In "C" language data types are used to represent which type of data will be stored in memory variable.
These are 2 types :
1. Numeric datatype Again these are 2 types :
i. Integer datatype:ex: +- 0,1,2,3,.....
ii. Real number datatype: ex: +- 0.13,3.353,....
2. Character datatype EX: 'a', 'x', 'b' etc...
_____________________________________________
Hope this helped you..................
_____________________________________________________
In "C" language data types are used to represent which type of data will be stored in memory variable.
These are 2 types :
1. Numeric datatype Again these are 2 types :
i. Integer datatype:ex: +- 0,1,2,3,.....
ii. Real number datatype: ex: +- 0.13,3.353,....
2. Character datatype EX: 'a', 'x', 'b' etc...
_____________________________________________
Hope this helped you..................
Answered by
1
Answer
The datatypes in C are as follows :
Float .
Character .
Integer .
Void .
Explanation
The datatype "Integer" is for taking integer type of values .
Integer does not include the decimals .
For example : 5 .
The datatype "Float" only uses decimal values .
For example : 5.0 .
Character include digits , letters , signs .
Void has no return type and it means empty .
Void returns nothing and hence it is empty datatype .
Similar questions