If the heap memory location starts at 9403, what is the value of the integer variable myAge at position 1? #include using namespace std; int a = 10; int main() { int b; int* myAge nullptr; b = 20; myAge = new int; // Position 1 *my Age = 30; delete myAge; return 0; } O nullptr O 9403 O 30 O not allocated