#include <stdio.h> int main() { char *s = "Welcome!"; while(*s){ putchar(*s); s ++; } putchar('\n'); return 0; }
稍不留神,就出现死循环,原因是循环体里没有趋近循环结束的条件:s ++.