Help for this page
size_t i = 0; while( cstring[i] ) { ... cstring[i] = '_'; i++; }
char * temp = cstring; while( *temp ) { ... *temp = '_'; temp++; }