Guest User

Untitled

a guest
May 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. void removeWhitespace(char* str) {
  2.     int current = 0;
  3.     int ahead = 0;
  4.  
  5.     while (str[ahead] != '\0') {
  6.         while (str[ahead] == ' ') ahead++;
  7.  
  8.         str[current] = str[ahead];
  9.         current++;
  10.         ahead++;
  11.     }
  12. }
Add Comment
Please, Sign In to add comment