Sunday, 21 January 2018
Home »
C Language
» Program for Compound Interest
Program for Compound Interest
Related Posts:
DECISION MAKING AND BRANCHING | Operators in C Program Language | simple c programs with output DECISION MAKING AND BRANCHING Introduction: C Language must be able to perform different sets of actions depending on the circumstances. A C program is a set of statements … Read More
Nested - IF Nested - IF Example:7 /*Quick Demo of NESTED if-else*/ main() { int i; printf("Enter either 1 or 2"); scanf("%d",&I); if(i==1) print… Read More
Demonstration Of If Statement | Demonstration Of If Statement Example:1 main() { int num; &… Read More
Multiple Statements With In If Multiple Statements With In If It may so happen that in program we want more than one statement to be execute if the expression following IF is satisfied.If such multiple statements are to be execute then they must be pl… Read More
Use Of Logical Operators Use Of Logical Operators C allows usage of three logical operators, namely && ,|| and ! These are to be read as 'AND' ,' OR' and 'NOT' respectively.&&, || allows two or more conditions to be combine… Read More
0 comments:
Post a Comment