1 2 3 4 5 6 7 8 9 10
#include <stdio.h> int main(void) { char s[] = "Howdy horny!\n"; char *t = s; puts((t + 6)); return 0; }