What will the following program print?
public class Main{ public static void main (String [] args){ unsigned byte b = 0; b--; System .out.println (b); } }
Select 1 option
Correct Option is : E
There no unsigned keyword in java! A char can be used as an unsigned integer.