Skip to content

Instantly share code, notes, and snippets.

@b4284
Created April 25, 2018 13:47
Show Gist options
  • Save b4284/1cdb21b805eaf8b4678f8e7eba826cec to your computer and use it in GitHub Desktop.
Save b4284/1cdb21b805eaf8b4678f8e7eba826cec to your computer and use it in GitHub Desktop.
int c[10];
void func(int c1[10]) {
c1[11] = 66;
}
int main() {
int d[10];
c[11] = 55;
func(d);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment