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 ... 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> ...
adminps9 - 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 ... 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> ...
adminps9 - 23/11/2019 - 11:40
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> ...
adminps9 - 23/11/2019 - 11:40
C++ program to reverse a string
C++ program to reverse a string that a user will input, for example, if the user ... "hello," then "olleh" will be printed as output. C++ program #include <iostream> #include <cstring> using ...
adminps9 - 23/11/2019 - 12:08
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 ...
adminps9 - 23/11/2019 - 11:40
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> ...
adminps9 - 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> ...
adminps9 - 23/11/2019 - 11:40
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 ...
adminps9 - 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 ...
adminps9 - 23/11/2019 - 11:40
C program to check orthogonal matrix
C program to check if a matrix is orthogonal or not. For an orthogonal matrix AA T = I. Example of an orthogonal matrix: 1 0 0 1 C program #include <stdio.h> int main ( ) { ...
adminps9 - 23/11/2019 - 11:40