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
int main() { int myAge = 25; int votingAge = 18; if (myAge >= votingAge) { printf("Old enough to vote!"); } else { printf("Not old enough to vote."); } return 0; }
Old enough to vote!