Odd number in C Lanhuage using while and do while loop Skill UP
  • Twitter
  • Facebook
  • Snapchat
  • Instagram

1. Write a program in C to print ODD numbers from 1 to N using while and do while loop.

#include <stdio.h>
/* C Prrogram to print ODD numbers from 1 to N Using While loop*/
int main()
{
//declare variable c as counter
int c;
/*declare variable n to store limit */
int n;
/* assign initial value
to counter c from where we want to print the numbers */
c=1;
//accept the value for n
printf("Enter the value of N: ");
scanf("%d",&n);
printf("Odd Numbers from 1 to %d:\n",n);
/* while loop, that will print numbers */
while(c<=n)
{
/* the condition to check ODD number */
if(c%2 != 0)
printf(" %d ",c);
/* increasing loop counter by 1 */
c++;
}
return 0;
}
Output:
Enter Value of N
7
Odd Numbers from 1 to 7
1 3 4 7


1. Write a program in C to print Odd numbers from 1 to N using do while loop.

#include <stdio.h>
/* C Prrogram to print ODD numbers from 1 to N Using do While loop*/
int main()
{
/* declare variable c as counter */
int c;
/* declare variable n to store limit */
int n;
/*assign initial value
to counter c from where we want to print the numbers */
c=1;
//accept the value for n
printf("Enter the value of N: ");
scanf("%d",&n);
printf("Odd Numbers from 1 to %d:\n",n);
/*while loop, that will print numbers*/

do
{
/*the condition to check ODD number */
if(c%2 != 0)
printf(" %d ",c);
/* increasing loop counter by 1 */
c++;
}while(c<=n);
return 0;
}
Output: Enter Value of N
7
Odd Numbers from 1 to 7
1 3 4 7
Program Explanation:
1.In the program given above there are two variables declared
1.)n to store the limit and
2)variable c=1 is assigned as loop counter.
2. printf("Enter the value of N: ");
display message "Enter the value of N:"
7
"We enter the value 7"
scanf("%d",&n); Read the value entered by user and store it in n.
next printf() display message "Odd Numbers from 1 to 7"
3. control jumps in do while loop start executing condition c%2!=0 (1%2!=0) which is true and display 1.
value of c is increment by 1 and after then while(c<=n) condition(2<=7) is evaluated which is true and body of do while loop is executed.
Then the condition if(c%2!=0) is tested which is false , value of c incremented (c++)by 1 now becomes c=3 .
Next while(c<=n) condition is tested(3<=7) which is true again body of loop executes , this process continues while value of c<=7.
Control jumps out of loop as soos as value of c becomes 8 and stops the program.


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:-->> Difference Between while and do while loop in C || Next topic:-->>Write C program to show EVEN numbers from 1 to N using while loop 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.