Tech Study

C Program To Check Whether Number Is Odd Or Even

Introduction

C Program to check whether an integer entered number by the user is odd or even. I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
int main()
{
    int number;
    printf("Enter a number: ");
    scanf("%d",&number);

    // True if remainder is 0
    if( number%2 == 0 )
        printf("%d is an even number.",number);
    else
        printf("%d is an odd number.",number);
    return 0;
}

Result

C Program to check whether an integer entered by the user is odd or even
C Program to check whether an integer entered by the user is odd or even

Write C++ Program To Print Number Of Days In a Month Using Switch Case

C++: Count Alphabets Digits Special Character In String

TaggedC Program to check whether an integer entered by the user is odd or even

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more