Skip to main content

Posts

Showing posts with the label engineering

Moving Ball Screensaver

Download Now :- Moving Ball Screensaver #include”graphics.h” #include”dos.h” #include”conio.h” #include”stdlib.h” #define DELAY 1 #define SOUND 3500 void state(int x,int y,int mode); int i; void *ptr1[4],*ptr2[4]; /* 3d Ball */ char ball[20][20]= { {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}, {0,0,0,0,0,0,12,12,12,12,12,12,12,12,0,0,0,0,0,0}, {0,0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,0,0}, {0,0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0,0}, {0,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,0,0}, {0,0,12,12,12,12,12,15,15,12,12,12,12,12,12,12,12,12,0,0}, {0,12,12,12,12,12,15,12,12,12,12,12,12,12,12,12,12,12,12,0}, {0,12,12,12,12,15,12,12,12,12,12,12,12,12,12,12,12,12,12,0}, {0,12,12,12,15,15,12,12,12,12,12,12,12,12,12,12,12,12,12,0}, {0,12,12,12,15,15,12,12,12,12,12,12,12,12,12,12,12,12,12,0}, {0,12,12,12,15,15,12,12,12,12,12,12,12,12,12,12,12,12,12,0}, {0,12,12,12,12,15,12,12,12,12,12,12,12,12,12,12,12,12,12,0}, {0,12,12,12,12,12,12,12,12,12,12,12,1...

Matrix Calculator

Downloda Now :-  Matrix Calculator #include<process.h> #include<graphics.h> #include<iostream.h> #include<dos.h> #include<math.h> #include<stdio.h> #include<string.h> #include<conio.h> class Border { public: void body(void); }; class Screen { public: void screen(void); }; class Output:public Screen { public: void Text(char *); void Number(double); }; class Button { public: void button_u(int,int,int,int,int,int,char*); void button_p(int,int,int,int,int,int,char*); };

Sudoku completer

Download Now :-  Sudoku_completer #include <iostream> #include <fstream> #include <string> using namespace std; int Sudoku[9][9][10]; //the actual sudoku int backupSudoku[9][9][10]; //used for making a copy of the actual sudoku

wireless patient pulse rate and temperature tracking system

C mini projects download in wireless patient pulse rate and temperature tracking system. This is a simple project in C source code. This code can be used in MCA and engineering mini projects. Download Now :-   wireless patient pulse rate an Wireless patient Pulse rate and Temperature tracking using C

Display floating-point in C++ Builder with eng.notation

#define MICRO "ยต" #define PREFIX_START (-24) /* Smallest power of then for which there is a prefix defined.    If the set of prefixes will be extended, change this constant    and update the table "prefix". */ #include <stdio.h> #include <math.h> char *eng(double value, int digits, int numeric) {   static char *prefix[] = {   "y", "z", "a", "f", "p", "n", MICRO, "m", "",   "k", "M", "G", "T", "P", "E", "Z", "Y"   };  #define PREFIX_END (PREFIX_START+\ (int)((sizeof(prefix)/sizeof(char *)-1)*3))       int expof10;       static unsigned char result[100];       unsigned char *res = result;       if (value < 0.)         {             *res++ = '-';             value = -value;         }       if (value ==...