6_5_30_generic_selection.c (82B)
1 int test_main(void) { 2 int x = 42; 3 return _Generic((x), int: x, default: 0); 4 }