关键字typdedef(类型定义/类型重命名)
#include typedef int std;int main(){ int a = 1; std b = 2; printf("%d",b); return 0;}