C语言中字符串

#include <stdio.h>

int main()
{
char s[] = "ABCD";
char *p;

for(p=s; p<s+4; p++)
{
printf("%s\n",p);
}

while(1)
{

}
}

 

结果:

ABCD

BCD

CD

D

 

posted @ 2015-08-04 17:09  hbg-rohens  阅读(204)  评论(0编辑  收藏  举报