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 x = 15; int y = 25; if (x > 10) { printf("x is greater than 10\n"); // Nested if if (y > 20) { printf("y is also greater than 20\n"); } } return 0; }
x is greater than 10
y is also greater than 20