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 C Program to replace lowercase vowels to uppercase in a string July 7, 2023 by dipak · Published July 7, 2023
0 Write a C program to print series of reverse number upto 1 using functions May 30, 2024 by dipak · Published May 30, 2024
0 Write a function in c program that prints Namaste if user is Indian and Bonjour if the user is French. December 10, 2023 by dipak · Published December 10, 2023