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.
C#のConvert.ToInt16(String)メソッドに相当するCは何ですか?私の場合、私の文字列はchar配列です。ありがとう
atoiを試すことができます。
atoiまたはstrtolを使用します。
int n = atoi(s)
sscanfも使用できます
sscanf("%i", myCharPointer, &myIntVar);