Find and write the output of the following C++ program code :
#define Big(A,B) (A>B)?A+1:B+2
void main()
{
char W[] = 'Exam';
int L=strlen(W);
for(int i=0; i<L-1; i++)
W[i] = Big(W[i],W[i+1]);
cout<<W<<endl;
getch();
}
Output: zyom