Skip to content

Commit a5a5e3d

Browse files
evnodd
Program to Check Even or Odd
1 parent c5c05c2 commit a5a5e3d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

evnodd

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#include <stdio.h>
2+
int main() {
3+
int num;
4+
printf("Enter an integer: ");
5+
scanf("%d", &num);
6+
7+
// True if num is perfectly divisible by 2
8+
if(num % 2 == 0)
9+
printf("%d is even.", num);
10+
else
11+
printf("%d is odd.", num);
12+
13+
return 0;
14+
}

0 commit comments

Comments
 (0)