15.How to convert int to long.
💡Code:
public class IntToLongConversion7078 {
public static void main(String[] args) {
// Example int
int intValue = 123;
// Convert int to long (implicit conversion)
long longValue = intValue;
// Print the converted long value
System.out.println("Converted long value: " + longValue);
}
}
📸Output :