+91-85006-22255
What will be the output of the following program?
public class Hex { public static void main(String args[]) { int flt = 190; System.out.println("Number value: " + flt); String st = Integer.toHexString(flt); System.out.print("Hex value: " + st); }}
Topic: Unknown
Read this topic Take test on this topic
Open In App