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 a = 10; int b = 3; printf("%d\n", a / b); // Integer division, result is 3 double c = 10.0; double d = 3.0; printf("%f\n", c / d); // Decimal division, result is 3.333... return 0; }
3
3.333333