Most welcome. Plz subscribe to the channel and if possible share with your friends. Thanks in advance.
@rakeshkambar90567 ай бұрын
Easy and simple explanation, thank you.
@SudhakarAtchala7 ай бұрын
You're welcome! Plz subscribe to the channel and if possible share with your friends. Thanks in advance.
@JayPatel-ou2ud2 жыл бұрын
Nice explanation 🙏🏻
@SudhakarAtchala2 жыл бұрын
Thanks. Plz subscribe to the channel and if possible share with your friends. Thanks in advance.
@prachichavan-nq1ip5 ай бұрын
Th🎉❤thankyou
@mk62632 жыл бұрын
import java.util.*; class parent { int a; } class child extends parent { int b,c; child() { a=10; b=20; } c=a+b; } class test { public static void main(String args[]) { child obj=new child(); System.out.print(obj.c); } } sir,why it is showing error sir plz do rply.It is showing identifier expected..