33.
What is the use of dynamic_cast operator?

34.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
main()
{
    double a = 21.09399;
    float b = 10.20;
    int c ,d;
    c = (int) a;
    d = (int) b;
    cout << c <<' '<< d;
    return 0;
}

35.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    int i, j;
    j = 10;
    i = (j++, j + 100, 999 + j);
    cout << i;
    return 0;
}