check a number is odd ?
C Programming Language / Decision Making of C Language
803Program:
#include"stdio.h" int main() { int number; printf("Enter an integer: "); scanf("%d", &number); // True if the number is not divisible by 2 if(number % 2 != 0) { printf("%d is odd. \n", number); } }
Output:
Enter an integer: 13 13 is odd. Press any key to continue . . .
This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS