do-while loop in c

The do-while loop in c in an exit controlled loop unlike the for and the while loop the condition is…

4 years ago

while loop examples in c

Let us look at various examples of the while loop in c. Printing n numbers: #include <stdio.h> int main() {…

4 years ago

while loop in c

The while loop in c is an entry controlled loop (Entry Controlled Loops are used when checking of a test…

4 years ago

Loops and its examples

Let us take a look at the various ways to use loops in c. Infinite loop An infinite loop in…

4 years ago

Loops in C

The programs that we have created so far were of limited nature, because on execution, they always perform the same…

4 years ago

switch and if-else in C

We had already seen that both if-else and switch in C can be used for decision-making in a program. Let…

4 years ago

switch Statement in C

The switch statement in C provide us with an alternate way to implement the if-else if ladder in a much…

4 years ago

if-else Statement

As we have already seen that the if statement by itself will execute a single statement, or a group of…

4 years ago

Decision-Making in C

Decision-making in C, as the name suggests, is a way of performing different sets of actions depending on various circumstances.…

4 years ago

Escape Sequence in C

The escape sequence in C represents nongraphic characters (nongraphic characters are those characters that cannot be typed directly from the…

4 years ago