Page not found
Search results
Floodfill function
... Code given below draws a circle and then fills it. C program #include <graphics.h> #include <conio.h> main ( ... ; return 0 ; } In the above program a circle is drawn in RED color. Point (100,100) lies inside the circle ...
devyog - 01/12/2019 - 08:56
Getarcoords function in C
... type arccoordstype is passed to function getarccoords. C program of getarccoords #include<graphics.h> #include<conio.h> ... ) ; return 0 ; } In the program, we have drawn an arc, and then we get the coordinates of its endpoints ...
devyog - 12/10/2020 - 22:47
Function wherey in C
... cursor position. Declaration: int wherey(); C program for wherey #include <stdio.h> #include <conio.h> ...
devyog - 14/12/2019 - 21:30
Function wherex in C
... cursor position. Declaration: int wherex(); C program for wherex #include <stdio.h> #include <conio.h> ...
devyog - 14/12/2019 - 21:28
setlinestyle in C
... , USERBIT_LINE } ; C program #include <graphics.h> int main ( ) { ...
devyog - 23/11/2019 - 11:40
getmaxx and getmaxy functions in C
... Y coordinate for current graphics mode and driver. C program #include<graphics.h> #include<conio.h> ...
devyog - 23/11/2019 - 11:40
Bar function in c
... fill pattern and fill color use setfillstyle . C program #include <graphics.h> #include <conio.h> main ( ...
devyog - 23/11/2019 - 11:40
Press me button game in c, download press-me-button game
... very close to button we move the button suitably. C program #include <stdio.h> #include <conio.h> #include ...
devyog - 23/11/2019 - 11:40
fillpoly function in c
... and color which can be changed using setfillstyle . C program #include <graphics.h> #include <conio.h> main ( ...
devyog - 23/11/2019 - 11:40
Textheight and textwidth functions in C
... function returns the width of a string in pixels. C program #include <graphics.h> #include <stdio.h> #include ...
devyog - 23/11/2019 - 11:40