You are here

Page not found

Search results

  1. sin function in C

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

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

  2. getdrivername function

    ... returns a pointer to the current graphics driver. C program for getdrivername #include <graphics.h> #include ...

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

  3. getbkcolor function in C

    ... current background color is GREEN, color will be 2. C program for getbkcolor #include <graphics.h> #include <conio.h> ...

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

  4. drawpoly function in c

    ... last point(320, 150) in array is same as first. See the program below and then its output, it will further clear your understanding. C program for drawpoly #include <graphics.h> #include <conio.h> ...

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

  5. getpixel function in c

    ... y). Declaration: int getpixel(int x, int y); C program for getpixel #include<graphics.h> #include<conio.h> ... therefore color of pixel at (0,0) is BLACK. So output of program will be color of pixel at (0,0) is 0, as 0 indicates BLACK color. ...

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

  6. getx function in C

    ... of the current position. Declaration: int getx(); C program of getx #include <graphics.h> #include <conio.h> ...

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

  7. getmaxx function in c

    ... mode and driver. Declaration: int getmaxx(); C program for getmaxx #include<graphics.h> #include<conio.h> ...

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

  8. Cleardevice function in c

    ... of filling the screen with current background color. C program for cleardevice #include <graphics.h> #include <conio.h> ...

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

  9. getmaxcolor function

    ... starts from zero. Declaration: int getmaxcolor(); C program of getmaxcolor #include<graphics.h> #include<conio.h> ...

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

  10. getmaxy function in c

    ... mode and driver. Declaration: int getmaxy(); C program for getmaxy #include<graphics.h> #include<conio.h> ...

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

Pages