Skip to content

Instantly share code, notes, and snippets.

@Wilfred
Created January 3, 2017 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Wilfred/fe6e8fc559c1386762388c7f4204166a to your computer and use it in GitHub Desktop.
Save Wilfred/fe6e8fc559c1386762388c7f4204166a to your computer and use it in GitHub Desktop.
looping over array in C
void print_elements(int* arr, int arr_length) {
for (int i = 0; i < arr_length; i++) {
printf("arr[i] = %d\n", arr[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment