You are here

Page not found

Search results

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

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

    devyog - 08/01/2018 - 20:55

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

  4. getmaxy function in c

    ... mode and driver. Declaration: int getmaxy(); C program for getmaxy #include<graphics.h> #include<conio.h> ... ] ;        initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    max_y = getmaxy ( ) ; ...

    devyog - 08/01/2018 - 20:55

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

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

    devyog - 08/01/2018 - 20:55

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

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

    devyog - 08/01/2018 - 20:55

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

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

    devyog - 03/01/2018 - 19:32

Pages