DEV/DEV1.1/essai_ctrl_m/corresp.c
Bekkouche Anis 6828f16e48 jfnjfj
2024-10-14 17:26:47 +02:00

10 lines
151 B
C

#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 58);
printf("%o\n", 72);
printf("%x\n", 0x3a);
return EXIT_SUCCESS;
}