In c++ i can assign/compare a value from a variable type to another, even regardless of the byte size. Sometimes useful, sometimes a mess.
Obviously, casting is the solution. But nobody's perfect, so, i make mistakes.
Wrong code, deserves warnings:
int una =3;
float dues;
adeu = hola;
int tres = 4;
long int quatre = tres;
I wanna know whether is there a way to see compiler warnings regarding of this:
Thank you.