I am currently writting a code for my programming class and have come across this error. I do not know how to fix it and was wondering if someone can help me or give me some hints.
for (index = 1; index < SIZE; ++);
{
if (values[index] < lowest)
{
lowest = values[index];
}
}
error: "project_5.cpp(44): error C2059: syntax error : ')'"