编写一函数 用户输入字符串 函数将获取第一个单词输出 并丢掉后面的字符(图)

编写一函数 用户输入字符串 函数将获取第一个单词输出 并丢掉后面的字符(图)_第1张图片

#include "stdAfx.h"
#include "ctype.h"
#include "stdlib.h"
#include "string.h"

int main(int argc,char * argv[])
{
	void name(char a[]);
	char ch[51],aame[51];

	name(ch);
	puts(ch);

	system("pause");
    return 0;
}

void name(char a[])
{
	int i;

	for(i=0;i<51;i++)
	{
		a[i]=getchar();
		if(ispunct(a[i])||a[i]==' ')
		{
			a[i]='\0';
			break;
		}
	}
}


你可能感兴趣的:(编写一函数 用户输入字符串 函数将获取第一个单词输出 并丢掉后面的字符(图))