Data Type in Data Structures Using C and C++
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...