Write an expression that dynamically allocates sufficient me
Write an expression that dynamically allocates sufficient memory to hold a single integer value and whose value is a pointer to that location
Solution
int a; // this is used to allocate sufficient memory for an integer value.
int *pt=a; //this is a pointer pt that pints to the location of the variable.
