Call by Value & Call by Reference

There are two ways to pass the data into the function in C language:  method :call by value method :call by…

3 years ago

Passing arguments between functions in C

The functions that we use need to be flexible, i.e, they should be able to pass values among other functions.…

3 years ago

Functions in C

A computer program cannot handle all the tasks by itself, instead, it requests other programs like entities called, functions in…

3 years ago

Jump statements in C

In some programming cases, we want to take control to the start of the loop, skipping the statements inside the…

3 years ago

do-while loop examples

Here are a few examples of the do-while loop. Printing table of a number using do-while: #include<stdio.h> int main(){ int…

3 years ago

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…

3 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() {…

3 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…

3 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…

3 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…

3 years ago