Due to server problems the website is temporarily offline! Visit http://www.smorgasbordet.com/pellesc/ to download Pelles C.
#include <stdio.h>int main(int argc, char **argv){ char c[] = "GATE2011"; char *p = c; printf("%s\n", p + p[3] - p[1]); printf("%s\n", p + 'E' - 'A'); return 0;}