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)
这在 str 第三行给出了一个错误
str must have a modifiable lvalue
char str[10]; int i=567; itoa(i, str, 10);