APL/APL1.1/CM1/format.c

10 lines
179 B
C
Raw Permalink Normal View History

2021-11-16 14:32:27 +01:00
#include <stdio.h>
#include <stdlib.h>
int main(void) {
printf("%u\n", 65u);
printf("%s\n", "65");
printf("%.0f\n", 65.0);
printf("%hhd\n", 65);
return EXIT_SUCCESS;
}