fb popup

/* remove if it's exist in your template */

Monday 3 April 2017

Types of Functions

There are 4 ways we can use a functions according to our various purposes.To Learn CLICK HERE

Sunday 2 April 2017

Recursion

Recursion means calling the function by itself.To learn CLICK HERE

Functions

Functions are there to reuse particular number of statement when ever we want inside program.
To know how it is CLICK HERE

Saturday 1 April 2017

While And Do-While Loop Post

While loop is used when we want to run a loop by checking only its condition.
Do while loop is used for running loop at least once ignoring whatever the condition may be.

To learn this CLICK HERE

For Loops

For loops are used to reduce our effort for running a particular statement many times instead of using printf those many times.

For Example we want to print numbers from 1-10 then instead of using printf 10 times we can use for loops

To understand how it is CLICK HERE

Friday 31 March 2017

Switch Case Statement

For menu driven programs we use Switch Case statement .To know what it is then CLICK HERE

IF-ELSE

If then else play a major role in programming .To Learn CLICK HERE

Break Statement

In various programs we use break statement to break loops or the next part of the statements.To Learn CLICK HERE

Thursday 30 March 2017

How to approach a program

How to approach a program.To implement a program you need to know how to think of writing a program.To Learn CLICK HERE