What is the output of this code
#include iostream
using namespace std;
int main()
{
int a = 2, b = 8, c, d;
c = a, b;
d = (a, b);
cout c ' ' d;
return 0;
}

Posted on by