Assign Int Value to Char Variable in Java



To assign int value to a char variable in Java would consider the ASCII value and display the associated character/ digit.

Here, we have a char.

char val;

Now assign int value to it.

val = 77;

Now, when you will print the value of “val”, it would display the character associate with the value (ASCII) 77.

The following is the complete example.

Example

 Live Demo

public class Demo {
   public static void main(String []args) {
      char val;
      val = 77;
      System.out.print("Value: ");
      System.out.println(val);
   }
}

Output

Value: M
Updated on: 2020-06-26T10:52:45+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements