First error:
Code:
if (inputv == 'y' || inputv == 'Y')
(
should be
Code:
if (inputv == 'y' || inputv == 'Y')
{
Second error:
Code:
if (location == -1)
(
should be
Code:
if (location == -1)
{
third error
Code:
else
{
{
for(int i = location; i < numElements - 1; i++)
}
videoLib[i] = videoLib[i++];
}
What is this code supposed to do ??