#include #include int main(void) { printf("%u\n", 65u); printf("%s\n", "65"); printf("%.0f\n", 65.0); printf("%hhd\n", 65); return EXIT_SUCCESS; }