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() { float myFloatNum = 3.5; double myDoubleNum = 19.99; printf("%f\n", myFloatNum); printf("%lf", myDoubleNum); return 0; }
3.500000
19.990000