1.Integer: Integer Data Type में variable को declare करने के 'int' keyword का इस्तेमाल करते है | Integer Data Type सभी numeric values को store कर सकता है | integer को output में print करना हो तो '%d' format specifier से output में print करते है | Integer Data Type 2, 4 और 8 bytes के हो सकते है |

2. Character: Character Data Type में variable को declare करने के 'char' keyword का इस्तेमाल करते है | Character को output में print करना हो तो '%c' format specifier से output में print करते है | Size 1 byte.

3. Float: Floating-point Data Type में variable को declare करने के 'float' keyword का इस्तेमाल करते है | float को output में print करना हो तो '%f' format specifier से output में print करते है | Floating-pont Data Type 4 bytes का होता है |

4. Double: Double Data Type में variable को declare करने के 'double' keyword का इस्तेमाल करते है |  integer को output में print करना हो तो '%f', '%e', '%E', '%lf' format specifiers से output में print करते है | Double Data Type 8 bytes का होता है |

5. Boolean: True or False, Size 1 byte

6. Void: void मतलब null value |  void में कोई value नहीं होती, ये कोई value return नहीं करता |