#include using namespace std ; //Using references to let a function be a l value //-------------------------------------------------------------------- int& func1( ) { int x1 ; return x1 ; } //-------------------------------------------------------------------- int main() { func1() = 200 ; return(0) ; }