{ char c; cp = &c; } /* c falls out of scope */ /* cp is now a dangling pointer */ }. 上述問題的解決方法是在該部分程式登出之前立即給CP賦0值(NULL)。
確定! 回上一頁