/* Example of use of the function printf to format the output of variables with fixed dimension, as defined in the '''' library */ #include #include int main() { int64_t a = -3; uint64_t b = 3; int8_t c = -3; printf("a=%" PRId64 " b=%" PRIu64 " c=%d\n", a, b, c); return 0; }