c++ code

Employee Database Management System in C++ Free Source Code

Employee Database Management System in C++ Free Source Code The Employee Database Management System in C++ is a desktop application coded in a C++ programming language. The project contains different coding scripts be able to manage the employee records. This project was created so that it could help you manage the recording of all the employees within the company. This will make your task faster

Mathematical Operation

//Author :LearningPen //Date : 28/9/2014 //MyBolg :http://learningpen.blogspot.com/ //Language : C++ //Tool : Dev C++ Notice: Reference http://www.sourcecodester.com/cc/7937/c-functions-basic-mathematical-operation.html. According to some of his code, modified by myself,I also use a class structure. Thank you for using. MyBlog:http://learningpen.blogspot.com/ welcome. ^-^

Setter and Getter functions in C++

Setter and Getter functions in C++

In this part you will learn: 1. How to make an object of class in C++ 2. What are Setters 3. What are getters 4. To use setters and getters 5. Basic C++ syntax How to make an object of class in C++? Whenever we want to make an object of the class we first define its class and then in the main of the program we write name of the class followed by the name of the object we want to make. e.g to make an object we write the code as class anyclass{ //data members and functions }; int main { anyclass myobj; } In the above code we have

Introduction to Object Oriented Programming in C++

Introduction to Object Oriented Programming in C++

In this part you will learn: 1. Why using Object Oriented programming approach? 2. What are Classes 3. Why we use classes 4. What are Access specifiers 5. Basic C++ syntax Why we use Object Oriented programming approach? We use object oriented programming in C++ because the procedural language( language containing all the functions and variables within the main of the program) cannot cope with very large projects like when we have to use several hundred of functions within one program.