2020-06-18 10:11:10 +02:00

10 lines
103 B
C

static int foox = 'f' + 'o' + 'o';
int foo (int x)
{
if (x)
return foox;
else
return 0;
}