Preprocessor Directives

Preprocessor Directives In this tutorial we are going to learn Preprocessor directives in c. Preprocessor directives are the statements which tells the compiler to change the program floor to include library in file (or to import external files). Preprocessor directives are the first statement of the program. Preprocessor directives are start with the # symbol and it …

Preprocessor Directives Read More »

Conditional statements and looping in c

Conditional statements and looping in c are used to change the flow of control of the program. Flow of control means that the way in which the program executes. Conditional statements in c: If statement :  if statement is the simple conditional statement in c.if statement contains condition along with this.if followed with the condition , if …

Conditional statements and looping in c Read More »