8 lines
77 B
C
8 lines
77 B
C
|
signed char foo[]="\377";
|
||
|
main()
|
||
|
{
|
||
|
int i;
|
||
|
i = foo[0];
|
||
|
exit(i != -1);
|
||
|
}
|