Other contributors have said "What are the control structures in unix?" is the same question as "Which are the control structures in programming?" If you believe that these are not asking the same thing and should be answered differently, click here
control structures are which is used to do some operations with conditions
some of them are if,if else,switch,goto,continue..........and loops like for ,while,do while and even break used to break the process on some conditions
SEQUENCE STRUCTURE: an action, or event, leads to the next ordered action in a predetermined order. The sequence can contain any number of actions, but no actions can be skipped in the sequence. The...
C language supports following control structures:1)if (condition){//statements}else{//statements}2)switch (condition){case <expression>: //statements;case <expression>: //statements;...
Presuming you mean: "What are structures in C (programming)" (Data) Structures are a simple way to organize information. Example: Suppose you want to make a program that does arithmetic operations on...
A rectangle might have a width, a height, a color, and a fill pattern. C lets us organize these four items into one group called a structure.
Example struct rectangle { int width; /* Width of...