Page not found
Search results
rectangle function in c
... bottom corner. The code given below draws a rectangle. C programming code for rectangle #include<graphics.h> ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; rectangle ( 100 , 100 , ...
devyog - 05/07/2018 - 14:10
grapherrormsg function in C
... Declaration: char *grapherrormsg( int errorcode ); C programming code for grapherrormsg #include <graphics.h> ... ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; errorcode = graphresult ( ) ...
devyog - 09/06/2018 - 20:50
textbackground in C
... . Declaration: void textbackground(int color); C programming code for textbackground #include<stdio.h> ... textbackground ( RED ) ; cprintf ( "C program to change background color." ) ; getch ( ) ...
devyog - 03/02/2018 - 16:06
Function moverel in C
... distance. Declaration: void moverel(int x, int y); C programming code for moverel #include <graphics.h> #include ... ] ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; moveto ( 100 , 100 ) ...
devyog - 24/01/2018 - 17:57
getx function in C
... of the current position. Declaration: int getx(); C program of getx #include <graphics.h> #include <conio.h> ... ] ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; sprintf ( array , "Current ...
devyog - 16/01/2018 - 19:08
Setbkcolor function in c
... drawing color is WHITE and background color is BLACK. C programming code for setbkcolor #include<graphics.h> ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; outtext ( "Press any key to ...
devyog - 08/01/2018 - 20:55
drawpoly function in c
... its output, it will further clear your understanding. C program for drawpoly #include <graphics.h> #include <conio.h> ... } ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; drawpoly ( 4 , points ) ...
devyog - 08/01/2018 - 20:55
outtextxy function in c
... argument contains the address of string to be displayed. C programming code for outtextxy #include<graphics.h> ... gm ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; outtextxy ( 100 , ...
devyog - 08/01/2018 - 20:55
sector function in c
... y, int stangle, int endangle, int xradius, int yradius); C programming code for sector #include <graphics.h> #include ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; sector ( 100 , 100 , ...
devyog - 08/01/2018 - 20:55
getmaxx function in c
... mode and driver. Declaration: int getmaxx(); C program for getmaxx #include<graphics.h> #include<conio.h> ... ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; max_x = getmaxx ( ) ; ...
devyog - 08/01/2018 - 20:55