DEV/DEV1.1/TP10/variete.c

7 lines
164 B
C
Raw Normal View History

2024-10-07 17:30:04 +02:00
#include <stdlib.h>
#include <stdio.h>
int main(void) {
printf("%c%c %hhu %hd %hu %d %u %ld %lu %f \n", 067, 067, 77, 77, 77, 77, 77, 77, 77, 77, 77.0, 77.0);
}