Typecasting
Typecasting
Typecasting:- typecasting help to convert one data type to another data type
//Typecasting
package com.company;
public class Main {
public static void main(String[] args) {
// write your code here
//int type variable
int a=33;
System.out.println("int variable : "+a);
//convert int into double
double c=a;
System.out.println("double variable is : "+c);
}
}
output:-
int variable : 33 double variable is : 33.0 Process finished with exit code 0
Comments
Post a Comment