Page not found
Search results
C program to hide mouse pointer
This program hides mouse pointer. We require to hide mouse pointer when we want to ... Program to show and hide mouse-pointer alternatively */ C program #include<graphics.h> #include<conio.h> ... , gm ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; status = initmouse ( ) ; ...
devyog - 23/11/2019 - 11:40
C program to get current position of mouse pointer
This program prints the x and y coordinates of current position of mouse pointer ... to get mouse-pointer coordinates - where is the mouse */ C program #include<graphics.h> #include<conio.h> ... 50 ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; settextstyle ( DEFAULT_FONT , 0 ...
devyog - 23/11/2019 - 11:40
C program to determine which mouse button is clicked
This program print which mouse button is clicked whether left or right, coordinates ... Program to determine which mouse button is clicked */ C program #include<graphics.h> #include<conio.h> ... 50 ] ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; settextstyle ( DEFAULT_FONT , 0 ...
devyog - 23/11/2019 - 11:40
C program to find the largest of three numbers
C program to find the largest of three numbers: User will input three integers ... of operator and '&&' is the logical AND operator. C program to determine largest of three numbers #include <stdio.h> ...
devyog - 30/10/2019 - 22:45
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 ...
devyog - 23/11/2019 - 11:40
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 ...
devyog - 23/11/2019 - 11:40
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
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> ...
devyog - 23/11/2019 - 11:40
C++ program to generate random numbers
C++ program to print random numbers. C++ programming code #include <iostream> #include <cstdlib> ...
devyog - 31/10/2019 - 19:57
C++ program to reverse a string
C++ program to reverse a string that a user will input, for example, if the user enters "hello," then "olleh" will be printed as output. C++ program #include <iostream> #include <cstring> using ...
devyog - 23/11/2019 - 12:08