char *pt; char string[] = "Test"; pt = string; while(*pt != '\0') { pt++; }
char str[] = "Test"; while(*str != '\0') { str++; }