RosettaCodeData/Task/Gotchas/C/gotchas-4.c
2023-07-01 13:44:08 -04:00

5 lines
48 B
C

int foo()
{
char bar[20];
return sizeof(bar);
}