This commit is contained in:
2025-05-06 03:36:02 +03:00
parent 991478f774
commit 785c2b0e50
14 changed files with 225 additions and 2 deletions

11
DeitelC/Chapter5/isEven.c Normal file
View File

@ -0,0 +1,11 @@
#include <stdio.h>
int isEven (int num);
int isEven (int num) {
if (num % 2 == 0) {
return 1;
} else {
return 0;
}
}