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

字符数组"student a am i"--》"i am a student"

时间:2015-10-31 01:45:46      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:include   return   

有一个字符数组的内容为:"student a am i",请你将数组的内容改为"i am a student".
#include<stdio.h>
#include<ctype.h>
#include<stdlib.h>
int my_strlen(const char *s)
{
	char *eos = (char*)s;
	while (*eos)
	{
		eos++;
	}
	return (eos - s);
}
void *my_strcmp(char *arr, char *s)
{
	while (*arr++ = *s++)
		;
}
void getword(char *s,int lim)
{
	char arr[20];
	my_strcmp(arr, s);
	char *sp = arr + lim - 1;
	int i = 0;
	char *w = sp;
	while (*sp != EOF)
	{
		w = sp;
		while (!isspace(*w)&&(--lim))
		{
			w--;
			sp = w;
		}
		w++;
		if (lim == 0)
		{
			while (!isspace(*sp))
			{
				s[i++] = *sp++;
			}
			break;
		}
			
		for (i; isalpha(*(w)); w++, i++)
		{
			s[i] = *(w);
		}
		while (!isalpha(*sp))
		{
			s[i] = *sp--;
			lim--;
		}
		i++;
	}
	return;
}
int main()
{
	char s[] = "student a am i";
	int len = my_strlen(s);
	getword(s,len);
	printf("%s\n", s);
	system("pause");
	return 0;
}

字符数组"student a am i"--》"i am a student"

标签:include   return   

原文地址:http://lingdandan.blog.51cto.com/10697032/1708218

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