You are here

Page not found

Search results

  1. 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

  2. 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

  3. 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

  4. 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

  5. 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

  6. 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

  7. 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

  8. 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

  9. 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

  10. 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

Pages