You are here

Page not found

Search results

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

    devyog - 08/01/2018 - 20:55

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

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

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

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

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

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

    devyog - 28/12/2017 - 21:34

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

    devyog - 28/12/2017 - 21:34

  9. imagesize function in c

    ... int imagesize(int left, int top, int right, int bottom); C programming code for imagesize #include <graphics.h> #include ... ] ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    circle ( 200 , 200 , ...

    devyog - 28/12/2017 - 21:34

  10. getche in C

    ... character and that character is printed on the screen. C code for getche #include<stdio.h> #include<conio.h> main ... Then view the user screen ( Alt + F5 ) if using Turbo C compiler. You will find the character printed on the screen if you pressed a ...

    devyog - 24/12/2017 - 18:14

Pages