You are here

Page not found

Search results

  1. C program to hide mouse pointer

    This program hides mouse pointer. We require to hide mouse pointer when we want to ... with drawing, after that we again make it visible. /* Program to show and hide mouse-pointer alternatively */ C program #include<graphics.h> #include<conio.h> ...

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

  2. C program to move a car

    Program in C using graphics to move a car. A car is made using two rectangles ... speed or lesser the delay your car will move fast. In this program color of the car also keeps on changing, this is accomplished by ... = window.adsbygoogle || []).push({}); C program #include <graphics.h> #include <dos.h> #include ...

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

  3. C program to draw pie chart

    This C program draws a pie chart showing percentage of various components drawn with different filling styles and colors. C program /* Program to draw a pie chart */ #include<graphics.h> ...

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

  4. C program to get current position of mouse pointer

    This program prints the x and y coordinates of current position of mouse pointer ... of that point will be printed on the screen. /* Program to get mouse-pointer coordinates - where is the mouse */ C program #include<graphics.h> #include<conio.h> ...

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

  5. C program to determine which mouse button is clicked

    This program print which mouse button is clicked whether left or right, coordinates ... where button is clicked are also printed on the screen. /* Program to determine which mouse button is clicked */ C program #include<graphics.h> #include<conio.h> ...

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

  6. C countdown program

    C graphics program which performs countdown for 30 seconds. C program #include <graphics.h> #include <dos.h> #include ...

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

  7. C program to check if mouse support is available or not

    /* Program to check if mouse driver is loaded or not */ C program #include <dos.h> #include <conio.h> int ...

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

  8. C program draw bar chart

    C program to draw a bar chart using graphics. The chart is drawn using bars filled with different styles and colors. C program #include <graphics.h> #include <conio.h> int ...

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

  9. C program to draw a 3d bar chart

    This C program draws a 3d bar chart. C program #include <graphics.h> #include <conio.h> int ...

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

  10. C program to draw circles in circles

    C program to draw circles in circles in two different colors. C program #include<graphics.h> #include<conio.h> ...

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

Pages