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

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more