Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
int main() { int myAge = 25; int votingAge = 18; if(myAge < votingAge) { printf("Not authorized"); exit(0); } printf("Age verified. Continue this way."); return 0; }
Age verified. Continue this way.