RosettaCodeData/Task/Gotchas/C/gotchas-9.c

8 lines
142 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
int foo(char buf[],int length){}
int main()
{
char myArray[30];
int j = foo(myArray,sizeof(myArray)); //passes 30 as the length parameter.
}