#include void main() { char string[] = "Is it supposed to smell that way?"; char *s; /* initialize the pointer */ s = string; while(putchar(*s++)) ; }