#include int main(void) { char str[128], *chptr; strcpy(str, "C is fun."); chptr = str; while ( *chptr != '\0' ) { printf("%c : address of chptr=%p\n", *chptr, chptr); *chptr++; } return 0; }