Skip to content

Instantly share code, notes, and snippets.

@SohanChy
Last active August 29, 2015 14:24
Show Gist options
  • Save SohanChy/3ec17faf88bcb1d5f0d8 to your computer and use it in GitHub Desktop.
Save SohanChy/3ec17faf88bcb1d5f0d8 to your computer and use it in GitHub Desktop.
Basic C function to print an INTEGER array
//Function printArray : PRINTS a Integer Array
void fprintArray(int arrayi[],int arrayLength)
{
int i;
for(i=0;i<arrayLength;i++)
{
printf(" %d",arrayi[i]);
}
printf("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment