Thursday, 18 May 2017

c++ - What is the use of type casting with regards to floats explained for a dummy,

What is type casting used for in C++, and what does it do in regards to float?



Please don't block this from commenting, I really just need to know the basics of type casting in Visual Studio 2017 C++ explained in an easy way. I don't understand the explanations, I need them dumbed down :(

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...