Created
May 10, 2018 17:06
-
-
Save jarhill0/711e4649732b7e7d280f82e41c9e2664 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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