Files
BUT1
CONTROLE
CM1
.vscode
exo1.c
exo2.c
exo3.c
exo4.c
exo5.c
CM3
stiti_CM1.tar.gz
stiti_CM3.tar.gz
DEV1.1
DEV1.2
DEV1.3
DEV2.2
.DS_Store
.gitignore
README.md
DEV/BUT1/CONTROLE/CM1/exo2.c

9 lines
287 B
C
Raw Normal View History

2024-02-01 13:55:03 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 58);
printf("%o\n", 47); /* IMPOSSIBLE A AFFICHER CAR LE 8 n'existe pas en base octal ... comme le 2 n'existe pas en base décimal donc 47 pour 57 à la limite*/
printf("%x\n", 0x58);
return EXIT_SUCCESS;
}