Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#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.