inttypes-1.c
来自「Mac OS X 10.4.9 for x86 Source Code gcc」· C语言 代码 · 共 22 行
C
22 行
/* APPLE LOCAL file test of inttypes.h formatter macros *//* { dg-do compile } *//* { dg-options "-Wall -W" } */#include <stdio.h>#include <inttypes.h>#include <stdint.h>int main (){ uint32_t x = 12; int32_t y = 15; printf("x = %" PRIo32 "\n", x); printf("x = %" PRIu32 "\n", x); printf("x = %" PRIx32 "\n", x); printf("x = %" PRIX32 "\n", x); printf("y = %" PRId32 "\n", y); printf("y = %" PRIi32 "\n", y); return 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?