import java.util.*;
public class typecasting {
public static void main(String[] args) {
// int marks = (int)99.99f;
// char c= 'a';
// int n= c+1;
// short s=(short)c;
// System.out.println(s);
// System.out.println(n);
long l = 10454332333333337L;
int n= (int)l;
System.out.println(n);
}
}
Output :-
Comments
Post a Comment