指针在字符串简单应用

#include <stdio.h>

int main()

{



        char *s = "Welcome!";

        while(*s){



                putchar(*s);

                s ++;

                

        }

        putchar('\n');

        return 0;



}



                
View Code

稍不留神,就出现死循环,原因是循环体里没有趋近循环结束的条件:s ++.

你可能感兴趣的:(字符串)