I am having issues using bool
CustomerList::updateStore(). I am using strcpy in order to
update input for the Store class, but all I am
getting is the same input from before. Here is what I am trying to
do:
Ex.
(1234, "Name", "Street Address", "City", "State", "Zip")
Using the function bool
CustomerList::updateStore()
Updating..successful
New Address:
(1234, "Store", "111 Main St.", "Townsville", "GA", "67893")
CustomerList.h
#pragma once;
#include
#include "Store.h"
class CustomerList
{
public:
Store *m_pHead;
...