C++ Project on Banking System

//**************************************************************************************************************// // This code has been written by TutorialsArt.com // Distribution of the code is permitted if and only if you do not delete these lines. //**************************************************************************************************************// //**************************************************************** //INCLUDES HEADER FILES //**************************************************************** #include <iostream .h> #include <fstream .h> #include <process .h> #include <string .h> #include <stdio .h> #include <ctype .h> #include <conio .h> #include <dos … Read more

C++ Project on Phone and Address Book

//**************************************************************************************************************// // This code has been written by TutorialsArt.com // Distribution of the code is permitted if and only if you do not delete these lines. //**************************************************************************************************************// #include<fstream .h> #include<iostream .h> #include<conio .h> #include<ctype .h> #include<process .h> #include<iomanip .h> #include<stdio .h> #include<string .h> #include<stdlib .h> void welcome_screen(); void welcome_screen() { clrscr(); gotoxy(20,10); cputs("**************** W E … Read more

C++ Project for Computer Shop

//**************************************************************************************************************// // This code has been written by TutorialsArt.com // Distribution of the code is permitted if and only if you do not delete these lines. //**************************************************************************************************************// // // ### HEADER FILES ### // #include<fstream.h> //for reading and writing files #include<conio.h> //for clrscr() #include<string.h> //for string characters #include<stdio.h> //for gets and puts function #include<process.h> //for … Read more

C++ Hangman Game Project

//**************************************************************************************************************// // This code has been written by TutorialsArt.com // Distribution of the code is permitted if and only if you do not delete these lines. //**************************************************************************************************************// #include <iostream.h> #include <stdlib.h> #include <string.h> #include <conio.h> const int Max_length=80; const int Maximum_tries=5; const int max_rows=7; int Letter_fill (char, char[], char[]); void init_Unknown (char[], char[]); int main … Read more

C++ Multidimensional Arrays

C++ Multidimensional arrays are arrays within an array. Multidimensional arrays can be two-dimensional (2D), three-dimensional (3D), and so on. The syntax for writing multidimensional arrays is: Here ArrayType is the data type of array. ArrayName is the name of array. ArraySize is the size of array. Size of array should be greater than 0. For … Read more

Categories C++

C++ Class Constructors and Destructors

C++ class constructors and destructors are members of a class. C++ Class Constructors Constructors are special class functions that execute with the creation of class object. The constructor initializes the object of the class and allocates memory to the object. Class constructor has no return type, not even void. It has same name as class. … Read more

Categories C++

Linked List Manipulations

Linked lists are data structures that consist of nodes. Nodes have two parts data part and pointer. The first node of the linked list is head. Programmer can perform the following operations on a linked list: Insertion Deletion Search Linked List Insertion Programmer can insert a node in the beginning, middle or at the end … Read more

Categories C++

Linked List Types

As clear from the name, linked list is data structure that have linked elements. Linked list consist of nodes that connect to each other. Each node has two parts, one is the data part and the other is the next pointer that points to the next node. Types of Linked Lists There can be three … Read more

Categories C++