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.
に変換しintたいchar *
int
char *
char str[10]=; int i=567; str=itoa(i, str, 10)
これにより、3行目のstrでエラーが発生します
str must have a modifiable lvalue
char str[10]; int i=567; itoa(i, str, 10);