anyone know how to -
"type cast to a pointer to a pointer to an array of 3 floats"?
I came up with -
float (**(type cast))[3];
What goes in the type cast parins?
This is supposed to compile with no errors.
This is a discussion on type cast to a pointer.... within the C++ Programming forums, part of the General Programming Boards category; anyone know how to - "type cast to a pointer to a pointer to an array of 3 floats"? I ...
anyone know how to -
"type cast to a pointer to a pointer to an array of 3 floats"?
I came up with -
float (**(type cast))[3];
What goes in the type cast parins?
This is supposed to compile with no errors.
rc7j
(float (*)[3])(any pointer); ..!!
Got it, thanks. It compiles OK.![]()
rc7j