//例18.15 char型字符串与函数 #include #include using namespace std; int get(const char*p); int main() { char ch[15]="hello word"; char *p="very well"; int a=get(ch); int b=get(p); cout<