The following example will do something very different from what the article says:
int myarray[4]= {1,2,3,0}; int *p = myarray; while ((*p)++) { printf("%d ", *p); }
The following example will do something very different from what the article says: