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; }
#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; }