Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
unsigned a = 5; int b = a - 1I; printf("b=%d", b);
在 Android/iOS 上运行这些代码,你会得到类似“b=5”的结果。“我”后缀是什么意思?