You are here

Page not found

Search results

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

  2. getx function in C

    ... of the current position. Declaration: int getx(); C program of getx #include <graphics.h> #include <conio.h> ... ] ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;     sprintf ( array , "Current ...

    Yogesh Suneja - 16/01/2018 - 19:08

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

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

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

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

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

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

  7. outtext and outtextxy functions

    ... at the specified coordinates (x, y) on the screen. C program #include<graphics.h> #include<conio.h> int ... gm ;        initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;        outtext ( "To display text ...

    Yogesh Suneja - 23/11/2019 - 11:40

  8. Enhanced for loop in Java

    ... {     String languages [ ] = { "C" , "C++" , "Java" , "Python" , "Ruby" } ;     for ( ...

    Yogesh Suneja - 05/12/2019 - 00:09

  9. Bubble sort in Java

    ... ( String [ ] args ) {     int n, c, d, swap ;     Scanner in = new Scanner ( System . in ... n + " integers" ) ;       for ( c = 0 ; c < n ; c ++ )       array [ c ] = ...

    Yogesh Suneja - 05/12/2019 - 20:40

  10. Floodfill function

    ... To change fill pattern and fill color use setfillstyle. Code given below draws a circle and then fills it. C program #include <graphics.h> #include <conio.h> main ( ...

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

Pages