Code Packets
Browse all published coding projects
TicTacToe game in C++
TicTacToe is a two-player game in which one's sign is' X' and the other's sign is 'O' and the player has to make 3 the same signs in a row to win the game.
Talking Clock using Python
This Program produces an audio output of current system time using the pyttsx3 module in Python
File Handling in C++
This module discusses the concepts, various modes, and functions used in File handling in C++
Program for conversion of a number from one form to other using C++
Hello learners, in this C++ article we are going to learn how we can convert a decimal number to binary i.e, number with base 2 and vice versa. Similarly for Octal and Hexadecimal numbers.
Offline Music Player using Tkinter Python
This Project is to develop a Music Player which works offline using the Tkinter module in Python.
Bank Management System Using Python
I have created a bank management system using Python which has menus like create an account, deposit/withdraw amount, balance inquiry, modify and close account, and show all account holder list.
Rock Paper Scissor game using Python
This is a simple rock paper scissor game in python. This game code uses the random and OS module of python.
Contact Book Management System using C++
This project is a console-based project without graphics. It allows users to save and easily search for a contact, like a person's name, email id, mobile number, address, and many other details.
Factorial of Large Number in C++
Factorial of 200 have 375 digits. It is not possible to store these values to data types(int , long long int) in C++.
Tetris Game Using Python
I have created a Tetris game using Python. The Player's goal is to continually stack boxes and clear lines. If the player runs out of space then the game is over.
LFU Cache Implementation in C++
This project is a basic implementation of LFU (Least Frequently Used) cache algorithm in C++.
Days in a particular month in C++
C++ program to find Days in a particular month. For example, if we give input as month number 5 and year 2003 and it means days in may, 2003 so it would print May, 2003 has 31 days.