Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
void RemoveChar( char* string, char c )
{
char *cp = string;
while( *string )
{
if( *string != c )
{
*cp = *string;
cp++;
}
string++;
}
*cp = 0;
}
void main()
{
char buffer[] = {"227-204-242] "};
RemoveChar( buffer, ']' );
printf("buffer = %s\n", buffer );
}