C++ Project – Software for Use in Computer Shops

/* &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& & COMPUTER SCIENCE PROJECT WORK & &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& SOFTWARE FOR THE USE IN COMPUTERS SHOP #################### #  STAR COMPUTERS  # #################### /* ### HEADER FILES ### */ #include    //for reading and writing files #include      //for clrscr() #include     //for string characters #include      //for gets and puts function #include…… Continue reading C++ Project – Software for Use in Computer Shops

C++ Project – Kaun Banega Crorepati (KBC)

//KBC Quiz //AAJ HAMARE SAMNE EK NAYE KHILADI MOAJUD HAIN JINKA NAAM HAI AUR YE SE AAYe HAIN HUM AAPKA EES GAME SHOW ME HARDIK SWAGAT KARTEIN HAIN CHALIYE AAP AUR HUM KHELTE HAIN ‘KAUN BANEGA CROREPATI TO AAPKA SAWAL AAPKE SAMNE YE RAHA. #include #include #include #include int flag=0,top=0; void main(void) { clrscr(); int…… Continue reading C++ Project – Kaun Banega Crorepati (KBC)

C++

C++ (pronounced “cee plus plus”) is a statically typed, free-form, multi-paradigm, compiled, general-purpose, powerful programming language. It is regarded as an intermediate-level language, as it comprises a combination of both high-level and low-level language features.[3] Developed by Bjarne Stroustrup starting in 1979 at Bell Labs, it adds object oriented features, such as classes, and other enhancements to the C programming language. Originally named C with Classes, the language was renamed C++ in 1983,[4] as…… Continue reading C++

C++ Program to Find Quadratic Equation

#include #include #include void main() { float a,b,c,root1,root2,delta; cout<<“\n\t Enter three numbers a, b, & c of ax^2+bx+c:\n”; cin>>a>>b>>c; if(!a)           // if a is zero cout<<“\n\t Value of \’a\’ should not be zero”<<“\n\t Aborting!!”<<“\n”; else { delta=b*b-4*a*c;    // beginning of else’s body if(delta>0) { root1=(-b+sqrt(delta))/(2*a); root2=(-b-sqrt(delta))/(2*a); cout<<“\n\t Roots are…… Continue reading C++ Program to Find Quadratic Equation

C++ Project for Diabetes Detection

//Diabetes Detection #include #include #include #include #include #include #include class diabetes { private: char name[40]; float age; int wt; float ht; char sex; char *s; public: void welcome_screen(void); void getvalue(void); void getlevel1_symptoms(void); void getlevel2_symptoms(void); void getlevel3_symptoms(void); int analyse_symptoms(int); char display_message(int,int); }; void main() { char ch,choice,cho; //int m,n=2; float m; int n=1; void diagnosis(void); diabetes…… Continue reading C++ Project for Diabetes Detection

C++ Project for Banking System

//Banking System //**************************************************************** //PROJECT BANKING SYSTEM //**************************************************************** //INCLUDES HEADER FILES //**************************************************************** #include #include #include #include #include #include #include #include #include #include #include typedef char option[15]; const int ROW = 10,COL = 10; int scan;    // To hold the special characters for moving the prompt in menu int ascii; //**************************************************************** // To display the main…… Continue reading C++ Project for Banking System

C++ Project – CD Cafe Management

//CD CAFE //This is the project where you can maintain records of CDS and MEMBERS. //One member can issue one cd at a time. If he/she does not return cd within 15 days he/she have to pay fine of Rs.20/- per day. //********************************************************** // PROJECT CD CAFE //********************************************************** # include # include # include #…… Continue reading C++ Project – CD Cafe Management

C++ Project – Canteen Management

//Canteen Management /*     &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& & COMPUTER SCIENCE PROJECT WORK& &&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&& SOFTWARE FOR THE USE OF CANTEEN DEPARTMENT ///////////////////////////// #################### #CANTEEN MANAGEMENT# ####################        */ /*## HEADER FILES ##*/ #include #include #include #include #include #include #include main() { clrscr(); unsigned int sum,add,d,i,j,e,f,g,h,k,l,w,x,y,z; unsigned int bir=10,per=36,der=110,mur=8,par=110,cor=90,twr=1199, lur=17,tir=107, rer=1499; int qubis=1000,abis=0,qupep=1000,apep=0,quden=110,aden=0,qumun=1000,amun=0,quperk=500,aperk=0,qucoc=400,acoc=0,qutit=100,atit=0,qulux=1000,alux=0,qutid=1000,atid=0,quree=300,aree=0; unsigned int m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=0;…… Continue reading C++ Project – Canteen Management

C++ Project – Book Shop

//Book Shop //******************************************************* // INCLUDED HEADER FILES //******************************************************* #include”stdio.h” #include”conio.h” #include”fstream.h” #include”stdlib.h” #include”dos.h” #include”string.h” #include”graphics.h” #include”iomanip.h” //******************************************************* // CLASS NAME : BOOK //******************************************************* class book { public: char name[20]; char author[20]; int a; void getdata(); void show(); }; //******************************************************* // FUNCTIONS TO GET AND SHOW DATA //******************************************************* void book::getdata() { cout<<“\n\”        \”ENTER…… Continue reading C++ Project – Book Shop