Skip to content

Instantly share code, notes, and snippets.

@aragaer
Created January 25, 2012 15:14
Show Gist options
  • Select an option

  • Save aragaer/1676722 to your computer and use it in GitHub Desktop.

Select an option

Save aragaer/1676722 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int a() {
printf("a called\n");
return 0;
}
int b() {
printf("b called\n");
return 0;
}
int main() {
int x[10];
x[a()] = b();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment