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 average of three numbers May 29, 2023 by dipak · Published May 29, 2023
0 C Program to replace all lowercase vowels into uppercase in a string July 7, 2023 by dipak · Published July 7, 2023