c语言怎么样取数组中字符串第一个字母
时间: 2023-08-15 09:14:45 浏览: 172
C语言经典例子-删除字符串中指定的字符详解.docx
要取数组中字符串的第一个字母,可以使用以下方式:
1. 对于字符数组,直接使用数组下标访问即可,如`char str[] = "hello"; char firstChar = str[0];`
2. 对于字符串数组,可以使用循环遍历每个字符串,取每个字符串的第一个字符,如
```
char strArr[][10] = {"hello", "world"};
for(int i=0; i<2; i++){
char firstChar = strArr[i][0];
printf("The first character of %s is %c\n", strArr[i], firstChar);
}
```
以上两种方法都是通过数组下标来访问数组元素的方式,其中第二种方法需要使用循环遍历每个字符串。
阅读全文