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