This commit is contained in:
2024-03-05 14:19:35 +03:00
parent b199446865
commit a4b587dc41
31 changed files with 0 additions and 0 deletions

14
w3school/booleans.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdbool.h>
#include <stdio.h>
int main() {
int votingAge = 18;
int myAge = 18;
if (myAge > votingAge) {
printf("Oy verebilirsiniz!");
} else if (myAge == votingAge) {
printf("test2");
} else {
printf("test1");
}
}