C/C++裏的const(1)

首先來看這樣一段程序: 1 #include<iostream> 2 using namespace std; 3 int main(){ 4 char *s = "hello world"; 5 6 cout << s << endl; 7 s[0] = 'B'; 8 cout << s << endl; 9 return 0; 10
相關文章
相關標籤/搜索