码迷,mamicode.com
首页 > 编程语言 > 详细

字符串数组

时间:2015-10-12 21:09:39      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>
#include <string.h>
main()
{
char str[10]={‘h‘,‘e‘,‘\0‘,‘l‘,‘l‘,‘o‘};//"hello"
printf("string length: %ld,and string is %s\n",strlen(str),str);

for(i=0;i<11;i++)
{
printf("[index:%d]%c\n",i,str[i]);
}
}

字符串数组

标签:

原文地址:http://www.cnblogs.com/htmlphp/p/4872732.html

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