Posts by Leandro Laurito • 11 points
1 post
-
1
votes4
answers16290
viewsA: How to remove spaces from a string in C?
A very simple solution would be the code below, using an auxiliary string and the stdio library. h, however is not the most optimized. int main() { int i=0,k=0; char str[51],str2[51]="Ola";…