摘要:
/*****字符串基本概念******/#include <stdio.h>#include <string.h>int main(){ char first[4] = {'l','m','\0'};//定义字符串 注意别忘了给字符串分配大小 char second[9] = "你好lm";//定义 阅读全文
posted @ 2017-10-23 11:07 IT_LM 阅读(181) 评论(0) 推荐(0)
|
摘要:
/*****字符串基本概念******/#include <stdio.h>#include <string.h>int main(){ char first[4] = {'l','m','\0'};//定义字符串 注意别忘了给字符串分配大小 char second[9] = "你好lm";//定义 阅读全文
posted @ 2017-10-23 11:07 IT_LM 阅读(181) 评论(0) 推荐(0) |
||