10 lines
179 B
C
10 lines
179 B
C
#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;
|
|
} |