generic.c 95 B

123
  1. // 测试 generic 编译
  2. int main() {int a; _Generic((a), int : 0, default : 0); return 0;}