This commit is contained in:
2023-10-24 15:42:53 +02:00
parent b77fecfee9
commit d770a781f8
6 changed files with 100 additions and 0 deletions

9
DEV1.1/CM1/exo2.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 57);
printf("%o\n", 057);
printf("%x\n", 0x57);
return EXIT_SUCCESS;
}