Skip to main content

CONTACT US

E-mail : gbloggers30@gmail.com

Comments

More Programs

C Program to Print Numbers from a to b using while Loop

In this easy coded program, you will learn how to print numbers from a to b using while loop, where the values of both will be taken from the user. --------------------------------------------------------------------------- Program to Print Numbers from a to b using while Loop /*Print Numbers from a to b- while Loop*/ #include<stdio.h> void main () {     int a, b;     printf( "Enter First Number: " );     scanf( "%d" , & a);     printf( " \n Enter Last Number: " );     scanf( "%d" , & b);     while (a <= b)     {         printf( "%d \t " , a);         ++ a;     } }   Output Enter First Number : 3 Enter Last Number : 9 3 4 5 6 7 8 9

C Program to Print Even Numbers from 1 to 20- while Loop

In this easy coded program, you will learn how to print even numbers from 1 to 20 using while loop. You will not need to take any input from the user as we are defining the end point. --------------------------------------------------------------------------- Program to Print Even Numbers from 1 to 20 /*Even Numbers from 1 to 20- while Loop*/ #include<stdio.h> void main () {     int i =2 ;     while (i <=20 )     {                 printf( "%d \t " , i);                 i +=2 ;     } }   Output 2 4 6 8 10 12 14 16 18 20 --------------------------------------------------------------------------- Hope you found this ' C Program to Print Even Numbers from 1 to 20- while Loop ' easy, simple and helpful! Try to solve more queries by yourself by referring more examples from B

C Program to Calculate Simple Interest

In this easy coded program, you will learn how to calculate simple interest by taking input of principle amount, number of years and rate of interest from user. Try adding final calculated amount which will include the principle amount plus the calculated simple interest in this program for your self practice. --------------------------------------------------------------------------- Program to Calculate Simple Interest /*Simple Interest*/ #include<stdio.h> void main () {         float p, n, r, si;         printf( "Enter Principle Amount, No. of Years, Rate of Interest= " );         scanf( "%f %f %f" , & p, & n, & r);         si = (p * n * r) /100 ;         printf( " \n Simple Interest= %f" , si); }   Output   Enter Principle Amount, No. of Years, Rate of Interest = 1000 10 10 Simple

C Program to Print Odd Numbers from 1 to 20 using for Loop

In this easy coded program, you will learn how to print odd numbers from 1 to 20 using for loop. --------------------------------------------------------------------------- Program to Print Odd Numbers from 1 to 20 using for Loop /*Odd Numbers from 1 to 20- for Loop*/ #include<stdio.h> void main () {     int i;     for (i =1 ; i <=20 ; i +=2 )         printf( "%d \t " , i); }   Output 1 3 5 7 9 11 13 15 17 19 --------------------------------------------------------------------------- Hope you found this ' C Program to Print Odd Numbers from 1 to 20 using for Loop ' easy, simple and helpful! Try to solve more queries by yourself by referring more examples from BEGINC . Here you will get the most easiest code to each and every query. Keep practicing.

C Program to Print Even Numbers from 1 to 20 using for Loop

In this easy coded program, you will learn how to print even numbers from 1 to 20 using for loop. --------------------------------------------------------------------------- Program to Print Even Numbers from 1 to 20 using for Loop /*Even Numbers from 1 to 20- for Loop*/ #include<stdio.h> void main () {     int i;     for (i =2 ; i <=20 ; i +=2 )         printf( "%d \t " , i); }   Output 2 4 6 8 10 12 14 16 18 20 --------------------------------------------------------------------------- Hope you found this ' C Program to Print Even Numbers from 1 to 20 using for Loop ' easy, simple and helpful! Try to solve more queries by yourself by referring more examples from BEGINC . Here you will get the most easiest code to each and every query. Keep practi

C Program to Print Even Numbers from 1 to n using for Loop

In this easy coded program, you will learn how to print even numbers from 1 to 'n' using for loop. Here, 'n' is the number up to which the user wants the even numbers to be printed. --------------------------------------------------------------------------- Program to Print Even Numbers from 1 to n using for Loop /*Even Numbers from 1 to n- for Loop*/ #include<stdio.h> void main () {     int i, num;     printf( "Enter Number: " );     scanf( "%d" , & num);     for (i =2 ; i <= num; i +=2 )         printf( "%d \t " , i); }   Output Enter Number : 8 2 4 6 8 --------------------------------------------------------------------------- Hope you found this ' C Program to Print Even Numbers from 1 to n using for Loop ' easy, simple and helpful! Try to so

C Program to Print Odd Numbers from 1 to n using for Loop

In this easy coded program, you will learn how to print odd numbers from 1 to 'n' using for loop. Here, 'n' is the number up to which the user wants the odd numbers to be printed. --------------------------------------------------------------------------- Program to Print Odd Numbers from 1 to n using for Loop /*Odd Numbers from 1 to n- for Loop*/ #include<stdio.h> void main () {     int i, num;     printf( "Enter Number: " );     scanf( "%d" , & num);     for (i =1 ; i <= num; i +=2 )         printf( "%d \t " , i); }   Output Enter Number : 8 1 3 5 7 --------------------------------------------------------------------------- Hope you found this ' C Program to Print Odd Numbers from 1 to n using for Loop '

C Program for Addition of Two Numbers(2 Variables)

In this easy coded program, you will learn how the addition of two numbers takes place using two variables. Actually, using less variables is preferred the most wherever possible. Rather, the same program can also be solved using three variables. --------------------------------------------------------------------------- Program for Addition of Two Numbers /*Addition of Two Numbers using Two Variables*/ #include<stdio.h> void main () {     int a, b;     printf( "Enter Two Numbers: " );     scanf( "%d %d" , & a, & b);     printf( " \n The Addition of %d and %d is %d." , a, b, a + b);     /*You can exclude the step below.*/     printf( " \n i.e. %d+%d=%d" , a, b, a + b); }   Output Enter Two Numbers : 5 7 The Addition of 5 and 7 is 12. i.e. 5+7=12 --------------------

C Program to Print Even Numbers from 1 to 'n'- while Loop

In this easy coded program, you will learn how to print even numbers from 1 to 'n' using while loop. Here, 'n',i.e. the end point will be given by the user and hence we will need to take input of the same. --------------------------------------------------------------------------- Program to Print Even Numbers from 1 to 'n' /*Even Numbers from 1 to n- while Loop*/ #include<stdio.h> void main () {     int i =2 , num;     printf( "Enter Number: " );     scanf( "%d" , & num);     while (i <= num)     {                 printf( "%d \t " , i);                 i +=2 ;     } }   Output Enter Number : 11 2 4 6 8 10 --------------------------------------------------------------------------- Hope you found this ' C Program to Print Eve

C Program to Calculate Simple Interest Until User Says to Continue

In this easy coded program, you will learn how to calculate simple interest until the user says to continue by taking input of principle amount, number of years, rate of interest  and wish for continuation from the user. Try adding final calculated amount which will include the principle amount plus the calculated simple interest in this program for your self practice. --------------------------------------------------------------------------- Program to Calculate Simple Interest Until User Says to Continue /*Simple Interest Until User says to Continue- do while loop*/ #include<stdio.h> void main () {         float p, n, r, si;         char opt;         do     {         printf( "Enter Principle Amount, No. of Years, Rate of Interest= " );             scanf( "%f %f %f" , & p, & n, & r);             si = (p