objective c array to string的相關文章
string - concatenate char array in C - Stack Overflow

string - concatenate char array in C - Stack Overflow

瀏覽:1017
日期:2025-06-11
I have a char array: char* name = "hello"; No, you have a character pointer to a string literal. In many usages you could add the const modifier, depending on whether you are more interested in what name points to, or the string value, "hello". You should...看更多