Saved Bookmarks
| 1. |
What are different data types in C ? |
|
Answer» •Primary data types: These are fundamental data types in C namelyinteger(int),floating point(float),character(char) and void .•Derived data types: Derived data types are nothing but primary datatypes but a little twisted or grouped together likearray, stucture, union and pointer. |
|