Skip to content

Instantly share code, notes, and snippets.

@cocodrips
Created July 24, 2014 17:06
Show Gist options
  • Save cocodrips/494e8785733ecffd0775 to your computer and use it in GitHub Desktop.
Save cocodrips/494e8785733ecffd0775 to your computer and use it in GitHub Desktop.
ぽいんたぽいんた♪
#include <stdio.h>
int main(int argc, char const *argv[])
{
int hoge[5];
for (int i = 0; i < 5; ++i){
hoge[i] = i * 10;
}
printf("%d\n", hoge[1]);
printf("%d\n", 1[hoge]);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment