标签: c integer clang literals suffix
unsigned a = 5; int b = a - 1I; printf("b=%d", b);
在Android / iOS上运行这些代码,您将得到像“b = 5”这样的结果。 'I'后缀是什么意思?