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...
A blog about programming languages and this Blog specially Create for learning languages like C language,C++ Language, Data Structure and Algorithm.
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...