What is the output in the below code?int *Tom,Jerry;Tom=Jerry;If the program gives error, justify it...
class sookshmas{int width;int height;int length;}class main{public static void main(String args[]){box obj = new box();obj.width = 100;obj.height = 20;obj.length = 100;int y = obj.width * obj.height * obj.length;System.out.print(y);}}