[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

[Solved] 3D or 2D graphics in c/c++? [closed]

You will have to draw every line and circle through your code,there won’t be a shortcut for that. Though, I would suggest using other graphics libraries like OpenGL. In other languages certain IDEs have features wherein you don’t have to write a code but you can manually design your graphics on a editor window and … Read more

[Solved] graphics in c and c++ [closed]

In addition to the backslash issue in the path, it’s extremely unlikely that you are using a 3270 compatible display. Why don’t you pass in the address of a with a=0. ab must be set to a requested mode unless you set the driver to autodetect, which will then select the highest available mode. See … Read more