What is the output of the following program? #include<iostream.h> static int j=10; void value() { static int j=40; cout<< now= <<j<< , ; } void value() { static int j=5; value(); cout<< next= <<j; }
Reveal answer
Fill a bubble to check yourself