Find the output of the following program:
#include<iostream.h>
#include<c.type.h>
typeof char Str80[80];
void main()
{
char*Notes;
Str80 Str='vR2GooD':
int L = 6;
Notes =Str;
while(L>=3)
{
Str[L]=(isupper(Str[L])?tolower(Str[L]):toupper(Str[L]));
cout<<Notes<<endl;
L--;
Notes++;
}
}
The output of the following program:
vR2Good
R2GoOd
2GOOd
gOOd