Write a C Program to find whether the entered number is even, odd. by dipak · December 10, 2023 Write a C Program to find whether the entered number is even, odd . #include<stdio.h> #include<conio.h> void main() { int a; clrscr(); printf(“Enter a number:”); scanf(“%d”,&a); printf(“%d”,a%2==0); // 1->the no. is even, 0->odd getch(); } Output:
0 Write a C Program to find the maximum between two enter numbers using if else statement. June 12, 2023 by dipak · Published June 12, 2023
0 Write a c program to print the series of number with skipping the desired number. May 29, 2024 by dipak · Published May 29, 2024