C program to find numbers whose sum of cubes of individual numbers is that number
Here is an implementation of while loop in C to find numbers whose sum of cubes of individual numbers is that number. You can go...
C program to find circumference and area of a circle from given radius
Here is a simple C program to find circumference and area of a circle from given radius – main(){ float r, pi = 3.1416, c, area;...
While Loop in C
Like do-while loop, While loop is the most commonly used looping construct to repeat a process or calculation for a set or collection of inputs...
C program to find the sum of squares of first n natural numbers
Here is a simple C program to find the sum of squares of first n natural numbers using do-while looping construct – main(){ int n,...
Do – While Loops in C
Looping constructs is an important programming language technique to repeat a process or calculation for a set or collection of inputs or storage based on...
Sample C program showing if – else constructs
Below are simple C programs for beginners to learn if-else decision construct. Example 1: Program to check if a number is odd or even main...
C Program to check for leap year
Here is a C program to check for leap year – main () { int year; printf("Please enter any year as 4 digits>> "); scanf("%d",...