Entrainement

This commit is contained in:
Simoes Lukas
2024-10-14 15:51:23 +02:00
parent f4b9936c0c
commit a379ee9e1f
5 changed files with 108 additions and 0 deletions

View File

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