0
How to solve the below mentioned question?
int &fun(){ static int x=10; return x; } int main() { fun()=30; cout<<fun(); }
3 Answers
0
Which question?
0
I don't get it. I just see a small code. What do you want to know about it?
int &fun(){ static int x=10; return x; } int main() { fun()=30; cout<<fun(); }