There's no difference in the final effect.
A cast is to use explicit, general, built-in cast notation for conversion.
Although in some cases we say "up-cast" when we mean an implicit conversion from Derived* to Base* (or from Derived& to Base&).
And in some cases one defines new cast notation.
The above definition of the terminology is just an operational definition, that is, it's not a definition where you can reason out that something is a cast. Casts are just those that are defined as casts. :-) For example, bool(x) is a cast, while !!x, which does the same and also is explicit notation, is not a cast.
In C++ you can and preferably should use the named casts static_cast, const_cast, dynamic_cast and reinterpret_cast, with possible exception for explicit casting of arithmetic built-in types. One reason is that a C style cast (Other*)p, or in C++-specific notation OtherPtr( p ), can do different things depending on context, and in particular, when the code is slightly changed the meaning of a C style cast can change. Another reason is that it's difficult to search for C style casts.
That said, the best is to avoid casts to the degree possible.
Cheers & hth.,