Page not found
Search results
C program to determine which mouse button is clicked
... Program to determine which mouse button is clicked */ C program #include<graphics.h> #include<conio.h> ... 50 ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; settextstyle ( DEFAULT_FONT , 0 ...
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> ... ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; X = getmaxx ( ) ; ...
devyog - 23/11/2019 - 11:40
getbkcolor function in C
... If current background color is GREEN, color will be 2. C program for getbkcolor #include <graphics.h> #include ... ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; bkcolor = getbkcolor ( ...
devyog - 22/11/2019 - 20:24
C program to find the largest of three numbers
C program to find the largest of three numbers: User will input three integers ... of operator and '&&' is the logical AND operator. C program to determine largest of three numbers #include <stdio.h> ...
devyog - 30/10/2019 - 22:45
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
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
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
getmaxy function in c
... mode and driver. Declaration: int getmaxy(); C program for getmaxy #include<graphics.h> #include<conio.h> ... ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; max_y = getmaxy ( ) ; ...
devyog - 08/01/2018 - 20:55
Cleardevice function in c
... of filling the screen with current background color. C program for cleardevice #include <graphics.h> #include ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; outtext ( "Press any key to clear ...
devyog - 08/01/2018 - 20:55
Function wherey in C
... vertical cursor position. Declaration: int wherey(); C program for wherey #include <stdio.h> #include <conio.h> ... ) ; return 0 ; } C programming: conio.h ...
devyog - 14/12/2019 - 21:30