C Language Tutorial

do while loop in C programming language

#include<stdio.h> void main(){ int x; do{ printf("value of x: %d\n", x); x=x+1; }while( x < 10 ); } In the ...
Read More

While loop in C Programming Language

When we want to execute a set of statements or a block of code repeatedly till a particular condition is ...
Read More

For loop in C Language

When we want to execute a set of statements or a block of code repeatedly till a particular condition is ...
Read More

How to take User Input in C Programming Language

Add this line in the beginning of your code #include<stdio.h> to include standard input output header file.Use scanf() functionin your ...
Read More

Variables and Data Types In C Programming Language

In simple words Variable is a name given to a memory area where we can store data. Using that name ...
Read More