Posts by Alcione Ferreira • 11 points
2 posts
-
1
votes3
answers3377
viewsA: How to eliminate excess spaces in a string?
Contributing to this theme I mixed C/C++, aiming to remove the excess spaces, both at the end and in the middle of a string. Look at the code I got string RemoveEspaco(string str) { int i, j; char…
-
0
votes2
answers2523
viewsA: Removing blanks from a string
Contributing to this theme I mixed C/C++, aiming to remove the excess spaces, both at the end and in the middle of a string. Look at the code I got string RemoveEspaco(string str) { int i, j; char…