gets函数

#include "stdio.h"
/*=================================================

===================================================*/
void main()
{
	char a[100];
	while(gets(a)!=NULL)
	{
		printf("Owen.wei%s\n",a);
	}
//	char *str1=NULL;
	printf("hello w23232323orld2!\n");
}

你可能感兴趣的:(gets函数)