Tree in C Language Tutorial Notes Study Material with Examples Tree (Non-linear Data Structures) Trees are used to represent data containing a hierarchical relationship between elements e.g., records, family trees and table contents Node:  Each data item in a tree. Root:  First or top data item in hierarchical arrangement. Degree of aContinue Reading

Structures in C Language Tutorial Notes Study Material with Examples Structures Structures in C are used to encapsulate or group together different data into one object. We can define a structure as given below struct object {         char id [20];          int rollno;        int marks; }; The variablesContinue Reading