Skip to content

Instantly share code, notes, and snippets.

@harrifeng
Created January 10, 2013 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harrifeng/4500762 to your computer and use it in GitHub Desktop.
Save harrifeng/4500762 to your computer and use it in GitHub Desktop.
Four way to *declare* mutable length array.
void f(int, int [*][*]);
void f(int n, int [*][m]);
void f(int n, int [n][n]);
void f(int, int [][*]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment