✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <iostream.h>
int main ()
{
char A [] = "ABC";
char * U = & A [2];
cout << "\ n" << * U--;
cout << * U--;
cout << * U;
return 1;
}
(C++)