A function is a collection of statements grouped together to do some specific task. In series of learning C programming, we already used many functions unknowingly. Functions such as – printf()
, scanf()
, sqrt()
, pow()
or the most important the main() function. Every C program has at least one function i.e. the main()
function.
Infinite loops in C – Use and Debugging
Infinite loop is a looping construct that iterates forever. In programming life either intentionally or unintentionally, you come across an infinite loop. Generally a program in an infinite loop either produces continuous output or does nothing. Infinite loops are also known as indefinite or endless loop.
As a novice programmer, you must know how to debug an infinite loop. As an intermediate programmer you must know how and when to use infinite loop. Let us first learn when to use infinite loop and how to define.
goto statement in C
goto
is a jump statement used to transfer program control unconditionally from one part of a function to another. I have used the word unconditionally because there is no restriction on control transfer. You can transfer program control from one position to any position within a function. Many programmers uses goto
to gain full control on their program.
continue statement in C
In the series of learning C programming, we learned to repeat a set of statements and terminate a repetitive statement using break
. Here in this post, I will explain another program flow control statement i.e. continue
.
break statement in C
Until now, we have learned to execute statements based on conditions using if…else statement. We also learned to execute repetitive statements using for loop, while loop and do…while loop.
In this post I will explain the use and importance of break
statement in program flow control.
Nested loops in C programming
In the series of learning flow control statements we learned to iterate set of statements using loop. Here in this post we learn to write one loop inside other.
Do…while loop in C programming
C programming supports three types of looping statements for loop, while loop and do...while
loop. Among three do...while
loop is most distinct loop compared to others.
do...while
is an exit controlled looping statement. We use do...while
loop when there is a need to check condition after execution of loop body. do...while
loop in any case executes minimum once.
While loop in C programming
Quick links
In previous post, we began our discussion on looping statements and learned for loop. In this post we will continue our discussion on while
loop.
For loop in C programming
In real life we come across situations when we need to perform a set of task repeatedly till some condition is met. Such as – sending email to all employees, deleting all files, printing 1000 pages of a document. All of these tasks are performed in loop. To do such task C supports looping control statements.
For loop is an entry controlled looping statement. It is used to repeat set of statements until some condition is met.
If…else…if vs switch…case, difference and usage?
if...else...if
and switch...case
both programming constructs has ability to take decision based on conditions. Both are almost similar in nature. However, there is always a debate among beginners which to use and when to use what?
In this post, I will compare both on various grounds. So let us begin.