C-If Statement with Example
We can see like most other languages; C uses the keyword if to implement the decision control instruction. The general form of if statement looks like below example.
if (this condition is true) execute this statement;
The keyword C if … Read More