主题:求教
#include<iostream>
using namespace std;
char *count_one(){
char a[]="hello world";
return a;
}
int main(){
char *p=count_one();
cout<<p<<endl;
cin.get();
return 0;
}
请教输出应该是?另外把char a[]="hello world"改成char *a="hello world"输出又是什么?
using namespace std;
char *count_one(){
char a[]="hello world";
return a;
}
int main(){
char *p=count_one();
cout<<p<<endl;
cin.get();
return 0;
}
请教输出应该是?另外把char a[]="hello world"改成char *a="hello world"输出又是什么?