You are here

Page not found

Search results

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

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

  3. setfillstyle function in c

    ...  CLOSE_DOT_FILL ,    USER_FILL } ; C programming source code for setfillstyle #include<graphics.h> ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    setfillstyle ( XHATCH_FILL , RED ...

    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. gety function in c

    ... of current position. Declaration: int gety(); C programming source code for gety #include <graphics.h> ... ] ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    y = gety ( ) ;     ...

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

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

  7. Line function in c

    ... Declaration: void line(int x1, int y1, int x2, int y2); C programming code for line #include <graphics.h> #include ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    line ( 100 , 100 , ...

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

  8. setviewport function in c

    ... note that the point (left, top) becomes the new origin. C programming source code for setviewport #include<graphics.h> ... ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    midx = getmaxx ( ) / 2 ...

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

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

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

Pages