Developpement/23DEV1.1/TPS1/TP01/02-entier/multi.c

12 lines
225 B
C
Raw Normal View History

2024-12-09 11:53:11 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%d\n", 73*16);
printf("%o\n", 73*16);
printf("%o\n", 16);
printf("%o\n", 73);
printf("%d\n", 73<<4);
printf("%o\n", 73<<4);
return EXIT_SUCCESS;
}