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.
問題があります。データをソケットに送信する必要があります。データは char 変数 (変数 A と呼びましょう) に格納されていますが、このデータの一部が変更されています。別の変数 (変数B) この変数で、変数 B によって行われた変更を含む変数 A を送信しますか?
変数 B:
char B[] = "inserted by the user"
変数 A:
char A[] = "soemthing '%Variable B' something else"
試す
char * A = malloc(strlen(B) + 40); /* You can tot up the additional bit here for the rest of A including the null */ sprintf(A, "something '%s' something else", B);