23.10.2021, 13:34
Printed code version produced by WordPress WP-SynHighlight plugin
1/1
1. class A {
2.
3. int data=50; //instance variable
4.
5. static int m=100; //static variable
6.
7. void method() {
8.
9. int n=90; //local variable
10.
11. }
12.
13. } //endof