1. void InsertBlank (char S[ ], int Pos)
  2. {
  3. for (int z = Pos; z != '0'; z++)
  4. S[z] = S[z + 1];
  5.  
  6. S[Pos] = ' ';
  7. }