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
typedef float Temperature; int main() { Temperature today = 25.5; Temperature tomorrow = 18.6; printf("Today: %.1f C\n", today); printf("Tomorrow: %.1f C\n", tomorrow); return 0; }
Today: 25.5 C
Tomorrow: 18.6 C