Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 201 Bytes

Lec1.md

File metadata and controls

14 lines (10 loc) · 201 Bytes

streams

int main(){

    string str = "Hello World";
    cout << str[1] << endl;
    coun << str <<endl;
    str[1] = 'i'; //可以当作数组来处理
}

string || char