Posts by Cplazi • 1 point
1 post
-
0
votes0
answers19
viewsQ: How to solve/finish this string exercise?
Code I’ve made so far: int main() { char string[100], c; int removidas; fgets(string,100,stdin); scanf("%c", &c); removidas = funcao(string, c); printf("Numero de remocoes: %d\n", removidas);…