C and C++
Write a program to check whether the given no is...
#include <stdio.h> int main() { int number; // Input number from user printf("Enter a number: "); scanf("%d", &number); // Check...


