摘要: 周末赶数据结构的作业,整理的一些关于C语言中字符数组的困惑与解答。1.赋值C语言中,给字符数组char s[]赋值使用strcpy (在string.h头文件中)#include #include int main(){ char test[3][4]; strcpy(test[0], "abc"); strcpy(test[1], "adf"); strcpy(test[... 阅读全文
posted @ 2015-06-08 10:55 LizSep 阅读(261) 评论(0) 推荐(0) 编辑