DEV/DEV1.1/Entrainements/controle_machine_2_A/ldiv.c

9 lines
265 B
C
Raw Normal View History

2024-12-10 12:52:05 +01:00
# include <stdio.h>
# include <stdlib.h>
int main(int argc, char** argv) {
ldiv_t quotient = ldiv(strtol(argv[1], NULL, 10), strtol(argv[2], NULL, 10));
printf("quotient : %ld\n", quotient.quot);
printf("reste : %ld\n", quotient.rem);
return EXIT_SUCCESS;
}