Decision! While writing program when its is executed it execute in the sequence which it is written but in serious programming sequence is according to some condition so here is the need to make decision .Which is implemented in C using : The if statement The if-else statement The conditional operator The if statement: The general form of if statement looks like this: if(this condition is true) execute this statement; Example: #include<stdio.h> int main() { int num; printf("Enter a number less than 10"); scanf("%d",&num); if(num<10) printf("What an obedient servant you are!\n"); return 0; } The if-else statement: In this form when the if statement turn to be false then the else statement is executed Example: /*Calculation of gross salary*/ #include<stdio.h> int main() { float bs,gs,da,hra; printf("Enter basic salary"); scanf("%f",&bs); if(bs<1500) ...