????????
?????????C/C++??????????????????????????????????????????????????????????????á??????????????????????????????????????????????C???????????????????????????"???????????"??????????????????????????????????????????????C/C++????????????????????????????????????????????"???????????"?????
???????????????????????????C???????????????????????????????й????????????????????????????????ο?????????????????????????縊?????й????????У???????????????????????д?????????"???????"????????????????????????????????д?????????????????Щ???????????????????????
?????????????
???????????????????WIN32???±?????
1. #include <iostream.h>
2. int main(int argc?? char* argv[])
3. {
4. ??char str[10];
5. ??char *pStr = str;
6. ??cout << sizeof(str) << endl;
7. ??cout << sizeof(pStr) << endl;
8. ??return 0;
9. }
????1???????????????
???????????????"???????????"????????÷??????
??????????????????????
???????裺???????????
??????pStr??str???????
???????????WIN32???£???????4??
???????????6?к??7?е??????????4??
???????????????6?????10????7?????4??
????????????費???????????????????
????2???????????????
???????????????????????????????????????????????????????5?С????г????????????????????????????????????????
????????????????????????????????????
1. #include <string.h>
2. #include <iostream.h>
3. int main(int argc?? char* argv[])
4. {
5. ??char str1[10] = "I Love U";
6. ??char str2[10];
7. ??strcpy(str2??str1);
8. ??cout << "string array 1: " << str1 << endl;
9. ??cout << "string array 2: " << str2 << endl;
10.?? return 0;
11. }