0177-literal.c (94B)
1 int boo(int *p) 2 { 3 return (p[1] == 2) ? 0 : 1; 4 } 5 6 int main() 7 { 8 return boo((int[]) {0, 2}); 9 }