91.
Which of the following statement is not true about preprocessor directives?

92.
What will be the output of the following C++ code?
#include<iostream>
using namespace std;
 
int &fun()
{
    int x = 10;
    return x;
}
int main()
{
    fun() = 30;
    cout << fun();
    return 0;
}

93.
How a reference is different from a pointer?

98.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    int a = 9;
    int & aref = a;
    a++;
    cout << "The value of a is " << aref;
    return 0;
}