C++ Project for Bank Management

//**************************************************************************************************************// // This code has been provided by TutorialsArt.com // Distribution of the code is permitted if and only if you do not delete these lines. //**************************************************************************************************************// //*************************************************************** // HEADER FILE USED IN PROJECT //**************************************************************** #include<fstream.h> #include<ctype.h> #include<iomanip.h> #include<conio.h> #include<stdio.h> //*************************************************************** // CLASS USED IN PROJECT //**************************************************************** class cls_account { int acno; char acc_name[50]; int … Read more

C++ Number Guessing Project

//**************************************************************************************************************// // This code has been provided by TutorialsArt.com // Distribution of the code is permitted if and only if you do not delete these lines. //**************************************************************************************************************// #include <iostream> #include <string> // Needed to use strings #include <cstdlib> // Needed to use random numbers #include <ctime> using namespace std; void Drawa_Line_fn(int n, char symbol); void … Read more

C++ Conditional Statements

There come many situations when the programmer has to use C++ Conditional Statements to make decisions or has to execute statements based on some conditions. I this case, the For example, we need to process further only if there is a valid input by the user. This process is called decision making. Decision making structures … Read more

C++ Operators

C++ Operators are special symbols that are used to operate different mathematical and logical operations. These operations are performed on variables and constants. These variables and constants are called Operands. Operators help to solve mathematical equations. There are different types of operators used in the C++ programming language. Following are their types: Assignment Operators Extended-Assignment … Read more

C++ Variable Initialization

Whenever we need to store data in computer memory we have to use variables. Variables are actually the symbolic name of the location somewhere in the computer memory.  The variables can hold different values of same data type at different time during the execution of a program. There are many ways for C++ Variable initialization.  … Read more

Categories C++

C++ Variables and Data Types

The main feature of the C++ is that you need to define everything before using it. C++ Variables are the names assigned to the memory locations where different type of data is stored. Data types define the type of the data to be stored in the memory locations. The variable are defined in this way … Read more

C++ Comments

Comments are the chunks of lines ignored by the compiler while compiling the code.  Comments are useful for understanding and explanation of the code. C++ allows single line as well as multiple line comments. Single Line Comments: If any line is pre-appended by double backslashes (//) then the line gets commented and compiler ignores such … Read more

C++ Keywords

C++ Keywords are predefined phrases that have a meaning and perform specific tasks. These are some reserved words which have specific meanings and are known to compiler. These keywords can not be used as variables. The details of the C++ keywords are given in the list below. asm auto bool break case catch char class … Read more