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

C Flow Control Statement Tutorial Notes Study Material with Examples C Flow Control Statements Control statement is one of the instructions, statements or group of statement in a programming language which determines the sequence of execution of other instructions or statements. C provides two styles of flow controls Branching (decidingContinue Reading