You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is my small project completely made with C++ only. This enables user to create, delete, debit, credit, transfer their accounts and importantly they can see their past transactions too. In the beginning there are two options namely "Admin login" and "customer login". Admin have their unique passcode without which they can't access "Admin".
One can use this code for their college projects. This is the code of University Management System using C++ language. It is one of the easy and understandable C++ code. It includes Classes and Objects , Inheritance concepts , loops , switch-case , if-else.
This repository contains a wide variety of beginner-friendly C++ projects designed to help you master core programming concepts. It covers everything from simple math operations and control flow to Object-Oriented Programming (OOP) and basic data structures like arrays, vectors, stacks, queues, and sets.
The purpose of this repository is to store and organize my C++ coursework projects completed during my time in college. Each project or assignment will be contained in its own folder, with accompanying documentation and source code.
First ever coding project of my life. A classic Tic Tac Toe game made on C language, wuth some cool loading screen animations and a VS BOT, practically impossible to defeat.
TicTacToe is a basic mini-game project which is very popular and simple by itself. It is a two-player game and played on a box with n x n squares. In this project, there are 3 x 3 squares. Each player is assigned a particular symbol. In this game, one player is assigned with the 'X' symbol and the other with 'O' that are common symbols. Any play…
The program is a simple console-based CRUD (Create, Read, Update, Delete) application written in C++. The program allows the user to add, list, update, and delete employee records. The program uses two vectors, `EmpID` and `EmpName`, to store the employee ID and name respectively.