You are here

Page not found

Search results

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

    Yogesh Suneja - 08/01/2018 - 20:55

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

    Yogesh Suneja - 08/01/2018 - 20:55

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

    Yogesh Suneja - 08/01/2018 - 20:55

  4. getpixel function in c

    ... y). Declaration: int getpixel(int x, int y); C program for getpixel #include<graphics.h> #include<conio.h> ... 50 ] ;   initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;   color = getpixel ( 0 , 0 ...

    Yogesh Suneja - 08/01/2018 - 20:55

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

    Yogesh Suneja - 08/01/2018 - 20:55

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

    Yogesh Suneja - 08/01/2018 - 20:55

  7. 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 ( ) ; ...

    Yogesh Suneja - 08/01/2018 - 20:55

  8. gettime c

    gettime in c: gettime function is used to find current system time. We pass address of a structure varibale of type ( struct time ). C programming code for gettime #include<stdio.h> #include<dos.h> ... ;     return 0 ; } C programming: dos.h ...

    Yogesh Suneja - 03/01/2018 - 19:32

  9. ellipse function in c

    ... and end angle should be 0 and 360 respectively. C programming code for ellipse #include<graphics.h> ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    ellipse ( 100 , 100 , ...

    Yogesh Suneja - 28/12/2017 - 21:34

  10. linerel function in c

    ... use getx and gety to find the current position. C programming code for linerel #include <graphics.h> #include ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    moveto ( 250 , 250 ) ...

    Yogesh Suneja - 28/12/2017 - 21:34

Pages