char to int Java

After knowing primitive data types and Java rules of Data Type Casting (Type Conversion), let us cast char to int as an example. The int takes 4 bytes of memory and char takes 2 bytes of memory. 2 bytes memory value can be assigned to a 4 bytes value and is done implicitly by JVM. …

char to int Java Read More »