[Solved] expected ‘)’ error in a c++ code [closed]
void Bresenham(int x1,int y1, int x2, int y2, colour) ^ you forgot the type here It should be void Bresenham(int x1,int y1, int x2, int y2, int colour) ( But you are not even using this function in your code ) You should also use int main() over void main() int main() { // your … Read more