#include <stdio.h> int main(){ int a = 5; printf("%d",a++); printf("%d",a); return 0; }
输出: 5 6
printf("%c",('a','b')); //b