码迷,mamicode.com
首页 > 其他好文 > 详细

d4_1 字符长度

时间:2014-07-24 21:25:19      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   io   art   for   

#include<stdio.h>
void main(){
char name[10];
int i=0;
printf("Enter your name:");
scanf("%s",name);
printf("Spell it:");
while(name[i]!=\0)
{

    printf("%c ",name[i]);
        i++;
}
printf("\nWelcome %s,length=%d\n",name,i+1);

}

bubuko.com,布布扣

d4_1 字符长度,布布扣,bubuko.com

d4_1 字符长度

标签:des   style   blog   color   os   io   art   for   

原文地址:http://www.cnblogs.com/thrive/p/3865809.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!