Help for this page

Select Code to Download


  1. or download this
    size_t i = 0;
    while( cstring[i] ) {
    ...
            cstring[i] = '_';
        i++;
    }
    
  2. or download this
    char * temp = cstring;
    while( *temp ) {
    ...
            *temp = '_';
        temp++;
    }