You are here

Page not found

Search results

  1. rectangle function in c

    ... bottom corner. The code given below draws a rectangle. C programming code for rectangle #include<graphics.h> ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    rectangle ( 100 , 100 , ...

    devyog - 05/07/2018 - 14:10

  2. Function moverel in C

    ... distance. Declaration: void moverel(int x, int y); C programming code for moverel #include <graphics.h> #include ... ] ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    moveto ( 100 , 100 ) ...

    devyog - 24/01/2018 - 17:57

  3. moveto function in c

    ... to (x, y) Declaration: void moveto(int x, int y); C programming code for moveto #include <graphics.h> #include ... ] ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;     sprintf ( msg , "X = %d, Y ...

    devyog - 08/01/2018 - 20:55

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

    devyog - 08/01/2018 - 20:55

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

    devyog - 08/01/2018 - 20:55

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

    devyog - 08/01/2018 - 20:55

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

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

    devyog - 08/01/2018 - 20:55

  9. setcolor function in c

    ... to RED. Remember that default drawing color is WHITE. C programming code for setcolor #include<graphics.h> ... , gm ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    circle ( 100 , 100 , ...

    devyog - 08/01/2018 - 20:55

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

    devyog - 08/01/2018 - 20:55

Pages