Page not found
Search results
getpixel and putpixel functions in C
... plots a pixel at a point(x, y) of the specified color. C programming code for getpixel and putpixel #include<graphics.h> ...
devyog - 22/11/2019 - 20:43
kbhit in C
Function kbhit in C is used to determine if a key has been pressed or not. To use it in a program ... otherwise it returns zero. Declaration: int kbhit(); C programming code for kbhit #include <stdio.h> #include <conio.h> int ...
devyog - 22/11/2019 - 20:31
lineto function in C
... can get current position using getx and gety function. C programming code for lineto #include <graphics.h> #include <conio.h> ...
devyog - 22/11/2019 - 20:16
grapherrormsg function in C
... Declaration: char *grapherrormsg( int errorcode ); C programming code for grapherrormsg #include <graphics.h> #include <stdlib.h> ...
devyog - 09/06/2018 - 20:50
textbackground in C
... . Declaration: void textbackground(int color); C programming code for textbackground #include<stdio.h> #include<conio.h> ...
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 <conio.h> ...
devyog - 24/01/2018 - 17:57
setcolor function in c
... to RED. Remember that default drawing color is WHITE. C programming code for setcolor #include<graphics.h> #include<conio.h> ...
devyog - 08/01/2018 - 20:55
moveto function in c
... to (x, y) Declaration: void moveto(int x, int y); C programming code for moveto #include <graphics.h> #include <conio.h> ...
devyog - 08/01/2018 - 20:55
Setbkcolor function in c
... drawing color is WHITE and background color is BLACK. C programming code for setbkcolor #include<graphics.h> #include<conio.h> ...
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> #include<conio.h> ...
devyog - 08/01/2018 - 20:55