char* convert(char* str, char find, char replace){<p><pre><code> char *current_pos = strchr(str,find);
while (current_pos){
*current_pos = replace;
current_pos = strchr(current_pos,find);
}
return str;
</code></pre>
}<p>convert("H264", "4", "5")