1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 #include <stdio.h> void main () { int n,i; n = 10 ; i = 1 ; while (n >= 1 &am...
print Series -1 2 -3 4 -5 6 -7........
1 2 3 4 5 6 7 8 9 10 11 12 13 #include <stdio.h> int main () { int s,i; for (i = 1 ,s = 1 ;i <= 10 ;i ++ ) ...
input from user and print factorial
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #include <stdio.h> int main () { int c, n, fact = 1 ; printf( "En...
Print Table of input nob from user
1 2 3 4 5 6 7 8 9 10 11 12 13 14 #include<stdio.h> int main () { int n,i = 1 ; printf( "Table of =" ); sc...
What is for loop
'for' loop:- for loop executed one or more statements for a specified number of times.This loop is a...
What is do-while Loop
'do-while' Loop:- do while is an iterative in c language. THis loop executes one or more ...
What is While loop
'while' Loop:- while loop is the simplest loop of c language. This loop executes one or more sta...
What is Loop
Loops:- A type of control structure that repeats a statements or set of statements is known as Looping structure.it is also...