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

7 lines
143 B
C

int foo()
{
#define size_of_bar 20 //the sizeof operator is the same as doing this essentially.
char bar[size_of_bar];
return size_of_bar;
}