代码如下所示:
void fUnc(float b){
//does nothing
}
float* fInit(void){
float result[3];
result[0] = 1.0;
result[1] = 1.0;
result[2] = 1.0;
return result;
}
int main(){
float* a = new float[3];
a = fInit();
fUnc(a[0]);
printf("%f, %f, %f", a[0], a[1], a[2]);
return 0;
}
数组元素的值为 -107374176.000000。如果 fUnc(a[0]) [什么都不做] 被注释掉,一切都会很好。有什么问题?
编辑:对代码进行了一些编辑,以便您更好地理解