Embed presentation
Download to read offline







C has 5 primary data types - character, integer, floating-point, double, and void. The character type stores single characters like letters. Integer stores whole numbers without decimals. Floating-point stores decimal numbers. Double handles very large numeric values beyond the range of integers or floating-point. Void means no value and is used when defining functions. Each data type has a keyword identifier like char for character and int for integer.






