#include using namespace std; int main() { char *CharPointer; /* CharPointer = new char; */ *CharPointer = 'A'; cout<<*CharPointer<<"\n"; return 0; }