WAP to typecast the following: Integer to String
2 years ago
OOP Java
Compile code:
class Inttostring{
public static void main(String[] args) {
// create int type variable
int num = 10;
System.out.println("The integer value is: " + num);
// converts int to string type
String data = String.valueOf(num);
System.out.println("The string value is: " + data);
}
}
Output:
Dipti KC
Jan 8, 2023