C program to plot random color dots on screen Get link Facebook X Pinterest Email Other Apps - March 21, 2018 Source Code- #include<graphics.h> #include<conio.h> void main() { int gd=DETECT, gm, i; clrscr(); initgraph(&gd,&gm,"c:\\turboc3\\bgi"); for(i=1;i<=15;i++) { putpixel(20+i*15,30,i); } getch(); closegraph(); } output- Get link Facebook X Pinterest Email Other Apps Comments
Change Background color of HTML file - May 05, 2021 <html> <head> <title> background color </title> </head> <body bgcolor="coral"> <h1> Hello There </h1> </body> </html> My Youtube Channel Read more
Comments
Post a Comment