C 語言編程 兩種宏定義 #define typedef

#include <stdio.h> #define PIN1 char* typedef char* PIN2 ; void main() { PIN1 x, y ; PIN2 a, b ; printf(" %d %d \n\n",sizeof(x),sizeof(y)) ; printf(" %d %d \n\n",sizeof(a),sizeof(b)) ; }
相關文章
相關標籤/搜索