Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は値xxxを持つC文字列を持っています.xは1から9までです。たとえば、最後の桁が8に固定されているxx8にするのに適したアルゴリズムは何ですか.
strtok 関数の使用を考えています。
この関数を使用します。
void mask_string(char s[]) { int j = 0,i; while (s[j] != '\0') j++; i = j-1; s[i] = '8'; }
これは、固定長の文字列がなくても機能します