Feed Headline Animator

To remove a specified character.

Main()
{
char s[80];
int p;
printf(“Type string and position to removed \n”);
gets ( s );
scanf(“%d”,&p);
strcpy (&s[p], &[p+1] );
puts (s);
}


Posted by: Wasim Javed

No comments:

Post a Comment