Data Type in Data Structures Using C and C++
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhYy0ZxTIePIGPgr_qlUlHKEbKGQMZGiBTK4YB4Ix0AVHYEcB-6yOE8wn9Ggd0m5ImenUe3ou2QfG2keFHqIIEfLzDgeIzfLfeQiI2ZUPoUQYcrv494krfG1ve2DN2tFnzz12poi1_a04g/s320/programming-1-1.jpg)
Introduction to Data Structure Data Type : - Data can be of different types, therefore, same type of data can be grouped to form a separate group. In files data can be numeric, alphabetical or alphanumeric.Numeric data can be used for calculations. There can be more properties of each type. Therefore,a data type refers to a named group of data which share similar properties or characteristics and which have common behaviour among them. For instance,Name can be contain alphabets, its data type is alphabetic; Address can contain digits (numbers) and alphabets, its data type is alphanumeric; Age can only have digits, its data type is numeric. Three fundamental data type are given below : - 1. Integer :- It allows to only have digits (0-9) a...