fork download
  1. #include <inttypes.h>
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. printf("300 using PRIu8: %" PRIu8 "\n", 300);
  6. return 0;
  7. }
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
300 using PRIu8: 300