Answers for "how to remove white spaces in a string in c programming"

0

how to remove white spaces in a string in c programming

char *remove_white_spaces(char *str)
{
	int i = 0, j = 0;
	while (str[i])
	{
		if (str[i] != ‘ ‘)
          str[j++] = str[i];
		i++;
	}
	str[j] = ‘\0’;
	return str;
}

int main()
{
	char str[50];
  printf("\n\t Enter a string : ");
	gets(str);
	remove_white_spaces(str);
	printf(“%s”,str);
	return 0;
}
Posted by: Guest on August-21-2021

Code answers related to "how to remove white spaces in a string in c programming"

Browse Popular Code Answers by Language