- 博客(1)
- 收藏
- 关注
原创 C++字符串定义区别
#include #include using namespace std; int main(){ char p[] = "hello"; string s = "hello"; char *q = "hello"; cout << (p == s); cout << (p == q); cout << (s == q) << endl;
2017-03-27 21:38:58 951
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人