Write C program to print all leap years from 1 to N using while and do while loop.

12. Write C program to print all leap years from 1 to N using while and do while loop..

Leap Year: The year that contain 366 days instead of 365 days is known as a leap year.With February, this year, has 29 days.
Simply put, a leap year is a year with an extra day—February 29—which is added nearly every four years to the calendar year
A leap year is exactly occurs every 4 years.The leap Year is divisible by 4 except for century years (years ending with 00). The century year is a leap year only if it is perfectly divisible by 400. e.g 2020 is Leap Year
2022 is Not Lear Year
2000 is Leap Year
2002 is not Leap Year

#include <stdio.h>
/* Write C Program to find all leap years from 1 to N using while loop provided by the user.*/

#include <stdio.h>
int main()
{
  int year;
  int min_year,max_year;
  printf("\nEnter the minimum year: ");
  scanf("%d",&min_year);
  printf("\nEnter the maximum year: ");
  scanf("%d",&max_year);
  printf("\nLeap years in given range are:\n ");
  year=min_year;
  while(year<=max_year)
   {
    if(((year%4==0)&&(year%100!=0))||(year%400==0))
    {
     printf(" %d",year);
    }
  year++;
}
return 0;
}

Output:
Enter the minimum year:
2000
Enter the maximum year:
2024
Leap years in given range are:
2000 2004  2008  2012  2016  2020   2024
Program Explanation:
1. In the program given above the variables year, min_year,max_year is declared as integer variable.
2. printf("\nEnter the minimum year: ");
  scanf("%d",&min_year);
These statements displays message "Enter the minimum Year:" and control wait at the memory location &min_year until user do not enter the value for min_year.Once you enter the value for a year ( the value for min_year enterd by us is 2000) scanf("%d",&min_year) store the entered value(integer value .i.e 2000) in the variable min_year, now the value for min_year=2000
similarly
  printf("\nEnter the maximum year: ");
  scanf("%d",&max_year);
displays message "Enter the maximum year:" and control wait at the memory location &max_year until user do not enter the value for max_year.Once you enter the value for a max_year (The value for max_year enterd by us is 2024 ) ,scanf("%d",&max_year) store the entered value (integer value i.e. 2024) in the variable max_year. now max_year=2024.
Note: "min_year and max_year are the variable they are used to store the year values. The min_year and max_year are the range of years in which we want to find Leap Years."
3. printf("\nLeap years in given range are:\n ");
year=min_year;
The printf() displays the message "Leap years in the given range are:"
and the value in min_year is assigned to the variable year.
The value for year is same as the value in min_year.
The variable year becomes year=2000.
The variable year is a variable whose value will be incremented by one from min_year to max_year and tested with max_year.
after executing these statements control jumps to while loop().
4. while(year<=max_year)
   {
    if(((year%4==0)&&(year%100!=0))||(year%400==0))
    {
     printf(" %d",year);
    }
  year++;
}
  4.1 The Condition while(year<=max_year) tested in the while loop is true(while (2000>=2024)) then control jumps inside body of the loop and start executing the statement/condition if(((year%4==0)&&(year%100!=0))||(year%400==0))
i.e. if(((2000%4==0)&&(2000%100!=0))||(2000%400==0))
2000%4==0 which is true and 2000%100!=0 is also true .
The expression year%400==0 is also true, combining all the condition in if statement evaluates true then body of the if executes the statement printf(" %d",year); get processed and displays integer(%d) value of the year on console i.e. 2000.
The Statement year++ is executed whose value is incremented by 1, now year becomes 2001.
The control goes back to test the while(year<=max_year) condition.
4.2 if the condition while(year<=max_year) tested is true then body of loop executes as explained in previous step.
This process continues while value of year is less than or equal to(<=) to the max_year.
5. Finally control comes out of loop and stops the execution.


12. Write C program to print all leap years from 1 to N using do while loop.

#include <stdio.h>
/* Write C Program to find all leap years from 1 to N using do while loop provided by the user.*/

#include <stdio.h>
int main()
{
  int year;
  int min_year,max_year;
  printf("\nEnter the minimum year: ");
  scanf("%d",&min_year);
  printf("\nEnter the maximum year: ");
  scanf("%d",&max_year);
  printf("\nLeap years in given range are:\n ");
  year=min_year;
  do
   {
    if(((year%4==0)&&(year%100!=0))||(year%400==0))
    {
     printf(" %d",year);
    }
  year++;
}while(year<=max_year);
return 0;
}

Output:
Enter the minimum year:
2000
Enter the maximum year:
2024
Leap years in given range are:
2000 2004  2008  2012  2016  2020   2024
Program Explanation:
The working of this program is same as the while loop given in the above program except that the body in the do while loop executes at least once even though the condition tested is false.


Assignments/practicles using while/do while loop:
Practice/Assignment set 1:

1. Write a program in C to print ODD numbers from 1 to N using while and do while loop.
This is an example of while loop and do while loop - In this C program, we are going to study or write a program to show/print all ODD numbers from given range (1 to N) using while loop and do while loop?
2. Write C program to show EVEN numbers from 1 to N using while loop and do while loop.
This is an example of while and do while loop - In this C program, we are going to study how can we print or display all EVEN numbers from given range 1.. N using while and do while loop?
3.Write a program in C to print all uppercase alphabets using do while and while loop.
This is an example of while loop and do while loop in C programming language - In this C program, we are going to print all uppercase alphabets from ‘A’ to ‘Z’ using while loop and do while loop.
4. Write a program in c to display all lowercase alphabets using while and do while loop.
This is an example of while and do while loop in C programming language - In this C program, we are going to print all lowercase alphabets from ‘a’ to ‘z’ using do while and while loop.
5. C program to print numbers from 1 to 10 using while and do while loop.
This is an example of while and do while loop in C programming language - In this C program, we are going to print numbers from 1 to 10 using while and do while loop.
6.Write C program to read an integer and print its multiplication table using while and do while loop.
In this program, we are reading an integer number and printing its multiplication table, the programs are implemented using while and do while loop.
.7 C Program to check entered number is ZERO, POSITIVE or NEGATIVE until user does not want to quit.
This program will read an integer number and check whether entered number is Positive, Negative or Zero until user does not want to exit.
8. Write the Program in C language to find factorial of a number using while and do while.
In this program, we will read and integer number and find the factorial using different methods - using simple method
9. Write C Program to find sum of first N natural number, N must be provided by the user.
This program will read the value of N from user(keyboard)and calculate sum from 1 to N, first N natural numbers means numbers from 1 to N and N will be read through user.
10. C program to print all prime numbers from 1 to N using while and do while loop.
This program will read the value of N and print all prime numbers from 1 to N. The logic behind implement this program - Run loop from 1 to N and check each value in another loop, if the value is divisible by any number between 2 to num-1 (or less than equal to num/2) - Here num is the value to check it is prime of not.
11. C program to print all Armstrong numbers from 1 to N.
This program will read value of N and print all Armstrong Numbers from 1 to N.
12. C program to print all leap years from 1 to N using while and do while loop.
This program will read value of N and print all Leap Years from 1 to N years. There are two conditions for leap year: 1- If year is divisible by 400 , 2- If year is divisible by 4 and must not be divisible by 100 (for Non Century years).


Practice/Assignment set 2:
1. C program to find sum of the square of all natural numbers from 1 to N.
Series: 1^2+2^2+3^2+4^2+..N^2
2. C program to find sum of the all natural numbers from 1 to N.
Series: 1+2+3+4+..N
3.C program to find the sum of Natural Number/Factorial of Number of all natural numbers from 1 to N.
Series: 1/1! + 2/2! + 3/3! + 4/4! + ... N/N!
4) C program to find sum of following series:
1+ 1/2 + 1/3 + 1/4 + 1/5 + .. 1/N
5) C program to find sum of following series:
1 + 3^2/3^3 + 5^2/5^3 + 7^2/7^3 + ... till N terms


Previous Topic:-->> Write a program in C to print all uppercase alphabets using do while and while loop || Next topic:-->>C program to print numbers from 1 to 10 using while and do while loop.

C Language

  • Home
  • Why C Language
  • History of C Language
  • Applications of C Language
  • Introduction To C
    • What is Program?
    • Structure of C Program
    • Working Of C Program
    • CHARACTER SET
    • VARIABLES AND IDENTIFIERS
    • BUILT-IN DATA TYPES
    • OPERATORS AND EXPRESSIONS
    • CONSTANTS AND LITERALS
    • SIMPLE ASSIGNMENT STATEMENT
    • BASIC INPUT/OUTPUT STATEMENT
    • SIMPLE 'C' PROGRAMS
    • Assignments
  • Operators in C Programming
    • Arithmetic Operators
    • Assignment Operators
    • Increment and Decrement Operators
    • Relational Operators
    • Logical Operators
    • Bitwise Operators
    • Other Operators
    • Assignments
  • CONDITIONAL STATEMENTS
    • DECISION MAKING WITHIN A PROGRAM
    • CONDITIONS
    • IF STATEMENT
    • IF-ELSE STATEMENT
    • IF-ELSE LADDER
    • NESTED IF-ELSE
    • SWITCH CASE
    • Assignments
  • LOOPS STATEMENTS
    • Introduction to Loops
    • GO TO Statement
    • Do while Loop
    • While Loop
    • Nested While Loop
    • Difference Between While and Do while
    • Difference Between Goto and loop
    • while loop assignments
    • C FOR Loop
    • C For loop examples
    • Nested for loop
    • Nested for loop examples
    • Infinite while Loops
    • Infinite for Loops
    • Continue in Loops
    • break in Loops
    • difference while do..while & for
    • Assignments
  • Arrays
    • One Dimensional Array
    • Declaring 1D Arrays
    • Initilization of 1D arrays
    • Accessing element of one 1D Array
    • Read and Display 1D Arrays
    • Two Dimensional Arrays
    • Declare 2D Arrays
    • Read and Display 2D Arrays
    • Assignments/Examples
  • Functions
    • Introduction
    • Need For User-Defined Function
    • Multiple Function Program
    • Modular Programming
    • Elements Of User Defined Function
    • Function Definition
    • Function Declaration
    • Types of functions
    • Nesting of Function
    • Recursion
    • Passing Array To Functions
    • Scope,Visibility and Lifetime of Variables
    • Assignments
  • Structure
    • Introduction
    • Array vs Structure
    • Defining Structure
    • Declaring Structure Variables
    • Type Defined Structure
    • Accessing Structure Members
    • Structure Initilization
    • Copying & Comparing Structure Variables
    • Array of Structure
    • Arrays Within Structure
    • Structures Within Structures
    • Structures and Functions
    • Structure Examples/Assignments
  • Union
    • Define Union
    • Create and use Union
    • Difference Between Structure and Union
    • Union Examples
    • Union FAQ
  • Pointers
    • What Are Pointers In C?
    • How Do We Use Pointers In C?
    • Declaration Of A Pointer
    • The Initialization Of A Pointer
    • Syntax Of Pointer Initialization
    • Use Of Pointers In C
    • The Pointer To An Array
    • The Pointer To A Function
    • The Pointer To A Structure
    • Types Of Pointers
    • The Null Pointer
    • The Void Pointer
    • The Wild Pointer
    • The Near Pointer
    • The Huge Pointer
    • The far Pointer
    • dangling pointer
    • Accessing Pointers- Indirectly And Directly
    • Pros Of Using Pointers In C
    • Cons Of Pointers In C
    • Applications Of Pointers In C
    • The & Address Of Operator In C
    • How To Read The Complex Pointers In C?
    • Practice Problems On Pointers
  • File Processiong
    • File Handling In C
    • Types Of Files In C
    • Operations Done In File Handling
    • File Examples
    • Binary Files
    • count words,lines in a file
    • Copy files
    • Update File
    • count vowels in a file
  • Preprocessor
    • Macro substitution division
    • File Inclusion
    • Conditional Compilation
    • Other directives
    • Examples
  • Dynamic Memory Allocation
    • malloc
    • calloc
    • free
    • realloc
    • Examples
  • Storage Classes
  • Graphics
  • Frequently Asked Interview Questions (FAQ)
    • Introduction To C FAQ
    • Operators FAQ
    • Conditional Statements FAQ
    • Loops FAQ
    • Arrays FAQ
    • Function FAQ
    • Structure FAQ
    • Pointers FAQ
    • Files FAQ
    • Storage classes FAQ
    • Dynamic Memory FAQ
  • Programs/Assignments
    • Introduction To C
    • Operators
    • Conditional Statements
    • Loops
    • Arrays
    • Function
    • Structure
    • Pointers
    • Files
    • Storage classes
    • Dynamic Memory
  • Case Studies
  • Multiple Choice Questions
    • Introduction To C MCQ
    • Operators MCQ
    • Conditional Statements MCQ
    • Loops MCQ
    • Arrays MCQ
    • Function MCQ
    • Structure MCQ
    • Pointers MCQ
    • Files MCQ
    • Storage classes MCQ
    • Dynamic Memory MCQ
    • More MCQ

Get in touch

  • tech2dsm@gmail.com

© Sankalan Data Technologies. All rights reserved.