#include int a; void increase(int& a) { a++; return; } int& increase() { a++; return a; } int main() { std::cout<<"Before calling function: " <