Write 3 statements in the main function below: (1) Initialize a pointer to point to a bookstore structure memory location. (2) Set the cost field of that bookstore to 49.95. (3) Delete the memory location to which the pointer points. struct bookstore { int LibraryofCongressNumber; char* title; float cost; }; void main () { }

Solved
Show answers

Ask an AI advisor a question