typedef的用法

#include <stdio.h>
typedef short int INT16;
int main()
{
    short int b = 101;
    INT16 c = 111;
    printf("b=%d\n", b);
    printf("b=%d\n", c);
    return 0;
}

 

posted @ 2025-04-10 08:40  鲁班大师智商二百五  阅读(7)  评论(0)    收藏  举报