Q4.Remove error from given code and complete that programs by defining its main () part.[10]
write c++ program
#include “msoftcon.h”class circle //graphics circle{int xCo, yCo; //coordinates of centerint radius;color fillcolor; //colorfstyle fillstyle; //fill patternpublic:void set(int x; inti y; int r; color fc; fstyle fs);{xCo = x;yCo = y;radius = r;fillcolor = fc;fillstyle = fs;)void draw(){set_color(fillcolor).set_fill_style(fillstyle);draw_circle(xCo, yCo, radius);}};
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here