[ create a new paste ] login | about

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

C, pasted on May 26:
1
2
3
4
5
6
7
8
9
10
11
#include<stdio.h>

int main(void)
{
    char a[]="ABCDEF";
    putchar(a[1]);
    putchar(*(a + 1));
    putchar(1[a]);

    return 0;
}


Output:
1
BBB


Create a new paste based on this one


Comments: