[ create a new paste ] login | about

Link: http://codepad.org/kGapFZaG    [ raw code | output | fork ]

emanresu - C, pasted on Aug 12:
1
2
3
4
5
6
7
#include <stdlib.h>
int main()
{
  int c[2] = {58,59};
  printf("%d",1[c]);
  exit(EXIT_SUCCESS);
}


Output:
1
59


Create a new paste based on this one


Comments: