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
#include
int main() { int a = 31; int b = 10; div_t result = div(a, b); printf("%d / %d = %d \n", a, b, result.quot); printf("Remainder: %d \n", result.rem); return 0; }
31 / 10 = 3
Remainder: 1