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.
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;
}
Write C++ Program To Print Number Of Days In a Month Using Switch Case
Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …
C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …