User profile: kostka

User info
User name:kostka
Statistical data
Skills:C
C++
Visual Basic
VB .NET
C#
Javascript
Fortran
History
Joined:
Number of posts:7
Latest posts:

Does using const ever speed up code in practice?
[quote]...however int const * arr = new int[10]; declares a constant pointer of normal integers...[/...

Does using const ever speed up code in practice?
I understand that the const modifier allows the compiler more freedom when reading the associated va...

return a pointer to a multidimensional array
[quote]What overhead are you talking about with std::vector?[/quote] My main beef with using the ...

return a pointer to a multidimensional array
[quote]What is odd about it? This problem has been solved in C++ by the standard template library.[/...

return a pointer to a multidimensional array
Thanks again, Disch, for your explanation. I can see how a 2d array class would better suit the C++...