You are here

Page not found

Search results

  1. C program to list files of a directory

    C program to list all files, present in a directory/folder, in which its ... it will list all the files present in C:\\TC\\BIN. C program (Turbo C compiler only) #include <stdio.h> #include ... You will get a different output when you execute the program on your computer. C programming: C programs ...

    devyog - 24/11/2019 - 13:47

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

    devyog - 23/11/2019 - 11:40

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

    devyog - 23/11/2019 - 11:40

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

    devyog - 23/11/2019 - 11:40

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

    devyog - 23/11/2019 - 11:40

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

    devyog - 23/11/2019 - 11:40

  7. Binary search in C

    ... is present in the list, then we print its location. The program assumes that the input numbers are in ascending order. ... array [ 100 ] ;   printf ( "Enter number of elements \n " ) ;   scanf ( "%d" , & n ...

    devyog - 14/10/2020 - 19:11

  8. C program to display mouse pointer in graphics mode

    This program displays mouse pointer in graphics mode. First graphics mode is initialized and then mouse using initmouse. C program #include<graphics.h> #include<conio.h> ...

    devyog - 23/11/2019 - 11:40

  9. C countdown program

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

    devyog - 23/11/2019 - 11:40

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

    devyog - 23/11/2019 - 11:40

Pages