how to make something equal to an array c code example
Example: how to make two arrays equal in c
void Set::getData(Set& tempSet) const.
{
for (int i = 0; i < size; i++)
tempSet[i] = set[i];
}
void Set::getData(Set& tempSet) const.
{
for (int i = 0; i < size; i++)
tempSet[i] = set[i];
}