Showing posts with label projects. Show all posts
Showing posts with label projects. Show all posts

Digital Stop-Watch Program

By // No comments:
Thumbnail
Digital Stop watch in C++ is not very difficult using libraries and build in functions which make this program so easy to create and understand even new beginner programmers can also understand it .We create this program as easy as possible if you have any query comment below . you can also convert it to simple c . #include<conio.h> #include<process.h> #include<iostream> #include<dos.h> using namespace std; int h=0,m=0,s=0,ms=0; // Hours mins sec and...

Banking System In C++ Source Code

By // No comments:
Thumbnail
This Banking System is develop by student of UAAR IT department .This program is created in C++ using object oriented approach (OOP Classes) with file writing. In this system you can create a bank account and you get a unique BANK id using that id you can deposit and withdraw money from bank and check your balance. Administrator also can edit,search and delete the user . Every user details written in file and can be access anytime. No data lose when program ended :) JOIN US ON FACEBOOK #include<iostream> #include<string> #include<fstream> #include<windows.h> using...