Skip to content

Instantly share code, notes, and snippets.

@jarhill0
Created May 10, 2018 17:06
Show Gist options
  • Save jarhill0/711e4649732b7e7d280f82e41c9e2664 to your computer and use it in GitHub Desktop.
Save jarhill0/711e4649732b7e7d280f82e41c9e2664 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void printArray(int array[], int length) {
printf("{");
for (int i = 0; i < length; i++)
printf("%d, ", *(array + i));
printf("\b\b}\n");
}
int main() {return 0;)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment