Removing last character in C ByMartin January 8, 2022 Removing last character in C Just set the last char to be : str[strlen(str)-1] = ; In C,