Skip to content

Instantly share code, notes, and snippets.

@mopp
Created April 18, 2014 04:30
Show Gist options
  • Save mopp/11024877 to your computer and use it in GitHub Desktop.
Save mopp/11024877 to your computer and use it in GitHub Desktop.
int main(void) {
/* j is NOT ok */
int mop1;
int* map1;
/* comment. */
/* j is ok */
int mop2;
int *map2;
/* comment. */
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment