Skip to content

Instantly share code, notes, and snippets.

@pcnoic
Created January 21, 2021 21:08
Show Gist options
  • Save pcnoic/bc060e18e5ba26a88edf3d89a827ad0b to your computer and use it in GitHub Desktop.
Save pcnoic/bc060e18e5ba26a88edf3d89a827ad0b to your computer and use it in GitHub Desktop.
weird printing function
void print(int *A, int N)
{
int i;
for ( i = 0 ; i < N ; i++)
printf("%d ", *(A + i);
printf("\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment