Skip to content

Instantly share code, notes, and snippets.

@sixthgear
Created December 27, 2011 21:55
Show Gist options
  • Select an option

  • Save sixthgear/1525287 to your computer and use it in GitHub Desktop.

Select an option

Save sixthgear/1525287 to your computer and use it in GitHub Desktop.
size_t
func(short a[])
{
return sizeof(a);
}
int
main()
{
short arr[10];
printf("%lu\n", func(arr));
return 0;
}
/* without running this program, predict what the output will be */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment