Skip to main content

Posts

Showing posts with the label Calculate Simple Interest

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 eas...

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

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

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;     }...