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

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

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

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

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

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

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

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

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

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

    Yogesh Suneja - 24/12/2017 - 18:14

  9. setdate c

    setdate function is used to change system date. C programming code for setdate #include<stdio.h> ... ) ;     return 0 ; } C programming: dos.h ...

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

  10. bar3d function in c

    ... To change fill pattern and fill color use setfillstyle. C program of bar3d #include<graphics.h> #include<conio.h> ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    bar3d ( 100 , 100 , ...

    Yogesh Suneja - 01/12/2019 - 08:56

Pages