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.
3文字のchar*文字列( "123")を小数点以下2桁のfloat(1.23)に変換する必要があります。
ASCII を整数に変換する atoi を使用できます。次に、その int を float に変換します。
int num = atoi(string); float f = num/100.0f; printf ("%.2f", f);