I have the following function in C++ :char** f(){ char (*v)[10] = new char[5][10]; return v;} Visual studio 2008 says the following:error C2440: 'return' ...
確定! 回上一頁