Data Structure Notes

A Data type refers to a named group of data which share similar properties or characteristics and which have common behaviour among them. Three fundamental data types used in C programming are int for integer values, float for floating-point numbers and char for character values. But, sometimes a need arises to treat a group of different data types as a single unit. In such a case,Data structures can be beneficial as data structures let you combine data of different types and process them together. Data […]

Continue reading