You are here

Page not found

Search results

  1. ceil in C - math.h

    ... passed to it. Declaration: double ceil(double); C program #include <stdio.h> #include <math.h> int ...

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

  2. sin function in C

    ... angle(in radian). Declaration: double sin(double); C program #include <stdio.h> #include <math.h> int ...

    Yogesh Suneja - 22/11/2019 - 20:46

  3. C program to compare large numbers (integers)

    ... number which is smaller in magnitude is the larger one. C program to compare numbers using string #include <stdio.h> ...

    Yogesh Suneja - 16/11/2019 - 09:19

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

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

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

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

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

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

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

  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