# include <stdio.h> int main(void) { char a[10] = {"How you?"}; char *p = a; while(*p) printf("%c", *p++); puts(""); return 0; }