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