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() { // Good variable name int minutesPerHour = 60; // OK, but not so easy to understand what m actually is int m = 60; printf("%d\n", minutesPerHour); printf("%d", m); return 0; }
60
60