2021-05-23

把一个单词读入一个字符数组中,然后倒序打印该单词。

#include<stdio.h>
int main(){
	int i;
	char word[30];
	printf("Please enter the words: ");
	scanf("%s", &word);
	printf("The words you input is %s\n",word);
	for(i = strlen(word) - 1; i >= 0; i--)
		/*  循环的起始位置是单词长度-1,结束位置是0,strlen返回有效长度值,即不包括'\0' */
		printf("%c", word[i]);
	return 0;
}

 

上一篇:模拟实现库函数strlen


下一篇:php中统计中文字符串长度的两种方法