28.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main ()
{
    int x, y;
    x = 5;
    y = ++x * ++x;
    cout << x << y;
    x = 5;
    y = x++ * ++x;
    cout << x << y;
    return 0;
}

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