How to Use GetBytes() Method in VC++
In Java ,
**byte[] saltedPassword = (password + getSalt()).getBytes();**
output :
SaltedPassword :[B@3eca90
here saltedPassword get encoded value in the same way i want to implement in VC++
Please anyone give me a Solution.
Thanks in Advance..