#include #include #include #include using namespace std; int main() { // char *MyCharPointer = new char; char *MyCharPointer = (char *)malloc(1); char *MyCharArray = (char *)malloc(sizeof("This is a basic example\n") + 1); strcpy(MyCharArray,"This is a basic example\n"); *MyCharPointer='a'; cout<