切割字符串

#include<stdio.h>
#include<conio.h>
//你需要用printf、scanf这些函数就要
//包含<stdio.h>
//用getchar()、getch()就要包含<conio.h>
#define LEN 80
main()
{
 char str1[LEN],str2[LEN];
 char *p1=str1,*p2=str2;
 int i=0;
 int j=0;
// clrscr();
 printf("Enter the string:\n");
 scanf("%s",str1);
 printf("***the origial string***\n");
 while(*(p1+j))
{
printf("%c",*(p1+j));
j++;
 
 }
for(i=0;i<j;i+=2)
	*p2++=*(str1+i);
     *p2='\0';
	 printf("\n the new string is :%s\n",str2);
}

你可能感兴趣的:(切割字符串)