Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • How does the (C) foo function declaration looks like? Commented Jul 9, 2018 at 13:12
  • In this example it could be void foo(int32_t *arr) Commented Jul 9, 2018 at 14:41
  • Ok, and inside the func, I imagine there's some processing taking place. That processing involves accessing the elements of the array (passed as a pointer). ?How does the function when to stop? meaning that If i pass a 100 values array how does it know not to access 101th element? Commented Jul 9, 2018 at 14:54