simple c program

C program to check even or odd

C determine odd or even


#include<stdio.h>
#include<conio.h>

int main(){

    int number;
    int min,max;
    clrscr();
  
    printf("Enter the minimum range: ");
    scanf("%d",&min);

    printf("Enter the maximum range: ");
    scanf("%d",&max);

    printf("Odd numbers in given range are: ");
    for(number = min;number <= max; number++)

         if(number % 2 !=0)
             printf("%d ",number);
    getch();
    return 0;

}



output:
Enter the minimum range: 1
Enter the maximum range: 20
Odd numbers in given ranges are: 1 3 5 7 9 11 13 15 17 19

No comments:

Post a Comment