C++
C++ is a popular and widely used mid-level language. It was designed as an extension of the C language.
- GitHub: https://github.com/topics/cpp
- Wikipedia: https://en.wikipedia.org/wiki/C%2B%2B
- Created by: Bjarne Stroustrup
- Released: October 1985
- Aliases: cplusplus, c-plus-plus, cpps, cpp98, cpp03, cpp11, cpp14, cpp17, cpp20, cpp0x, cpp1y, cpp1z, cpp2a, cplusplus-11,
- Last updated: 2026-07-18 00:06:49 UTC
- JSON Representation
https://github.com/whatacold/whatacold
profile
clojure clojurescript cpp emacs python
Last synced: 25 Nov 2025
https://github.com/hesic73/snippets
A bunch of C++ code snippets for tackling LeetCode problems
Last synced: 24 Mar 2025
https://github.com/kichuman28/dsa_notes
This repository keeps a track of every leetcode questions I solve along with notes of each problem.
Last synced: 16 Mar 2025
https://github.com/andezion/retromessenger
ciphers cpp cryptography messenger retro wxwidgets
Last synced: 16 Jan 2026
https://github.com/karlosvas/jetbrains-youth-coding-club
Concursos de Codeforces con debates en vivo en inglés, dirigidos por Pavel Mavrin (pashka): campeón mundial de ICPC 2004, medallista de plata de IOI 2002 e instructor en JetBrains Academy.
Last synced: 29 May 2026
https://github.com/giovanni-ottaviano/lcsd-sat-transition
Investigation of the data-driven satisfiability transition in the linear classification of structured data
cpp machine-learning physics python pytorch satisfiability-problem
Last synced: 30 Apr 2026
https://github.com/vincent-devine/pokemon_folder_organizer
Program to find out where a card should go to collect Pokedex from gen 1 to 5
Last synced: 19 Sep 2025
https://github.com/manucabral/cosevawriter
Program to overwrite and read .csv files for Windows
Last synced: 16 Mar 2025
https://github.com/paiv/oop_study
Practical OOP in different languages
c cpp java javascript oop-principles python ruby scala swift
Last synced: 12 Apr 2026
https://github.com/antdeivid/estrutura-de-dados-avancada
Repositório destinado ao upload dos programas feitos no estudo de Estrutura de Dados Avançada.
avl-tree bst cpp data-structures red-black-trees
Last synced: 16 Mar 2025
https://github.com/nilssonk/variant-pointer
A header-only C++14 compatible variant pointer.
cpp cpp14 cpp17 header-only pointer variant
Last synced: 08 Apr 2025
https://github.com/youpong/getuser
Sample program for getting user name on multiple platforms.
Last synced: 22 Apr 2025
https://github.com/0xromjobert/cpp04
A 42 exercise on subtype polymorphism, abstract classes and interfaces in C++
abstract-classes cpp cpp98 interfaces subtype-polymorphism
Last synced: 01 Apr 2025
https://github.com/blayung/my-multi-clock
The code for my own electronic clock, that I'm already planning to add way more features to than just showing the time. You won't do much with it unless you make a circuit just like mine.
arduino cpp electronics esp8266
Last synced: 12 Apr 2026
https://github.com/luizgll/oopd
オブジェクト指向型汎用プロンプト用語定義 (Object-Oriented Terminology for Prompt Design)
class classes cpp group-project hospital-management-system oop oopd overriding pbs pygame tetris tetris-game tetromino uml-diagrams
Last synced: 01 Apr 2025
https://github.com/mohammad-malik/nu_exam
A C++ program that manages, stores and allows for the attempting and creation of quizzes, all through a terminal
cli cpp exam university- university-coursework
Last synced: 24 Mar 2025
https://github.com/maximilianfeldthusen/simplenn
cpp dataset neural-network train
Last synced: 08 Apr 2025
https://github.com/ahawazi/course_cpp
learn the c++ and try to use this. this is the course for learn the c++
Last synced: 28 Mar 2025
https://github.com/kaixtr/labirinto
Projeto de algoritmo de labirinto programado para a matéria de Teoria dos autômatos do curso de Ciência da Computação na Universidade do Distrito Federal, em 2025.
Last synced: 01 Apr 2025
https://github.com/drozhkov/as-centrifugepp
Centrifugo C++ client
centrifugo cpp protobuf websocket
Last synced: 01 Apr 2025
https://github.com/nandkumar1000/hospitalmanagementsystem-and-mindgame
This repository features two C++ projects demonstrating OOP, data handling, and game logic. 🏥 Hospital Management System – Manages patients, doctors, and appointments efficiently. 🎲 Number Guessing Game – A multiplayer game with difficulty levels and an AI-powered umpire.
cpp random-number-generators stl vector
Last synced: 10 Jun 2025
https://github.com/mensenvau/solutions_my_contests
My Contests with Solutions
contest cpp leetcode-solutions python
Last synced: 25 Mar 2025
https://github.com/netromdk/efdl
efdl is an efficient downloading CLI app over HTTP(S)
cmake command-line-tool cpp cpp11 downloader hash-verification http http-basic-auth http-client mit-license qt5 sha1 sha224 sha256 sha3-224 sha3-256 sha3-384 sha3-512 sha384 sha512
Last synced: 12 Apr 2026
https://github.com/msh-trojan/cpp_statement
a simple program to print out the value of a variable
Last synced: 01 Apr 2025
https://github.com/heyfoz/cpp-parallel-vector-functions
The Parallel Vector Functions Program (C++) uses two parallel vectors, which are each filled with 500 random numbers between 1 and 100. The vectors are passed to a function that returns an integer indicating how many times both vectors contained even numbers in the same location.
Last synced: 24 Jun 2026
https://github.com/heyfoz/cpp-triangle-area-functions
The Triangle Area Functions Program (C++) uses a loop to ask the user 1 of 2 methods to calculate the area of a triangle. The 1st method calculates the area with the base & height values, while the 2nd calculates the area with all 3 sides. Calculated values are printed to the console as output.
area calculations cpp geometry triangle
Last synced: 25 Mar 2025
https://github.com/heyfoz/cpp-inventory-vector-builder
The Inventory Vector Builder Program (C++) reads an InventoryParts.txt file into a vector of structs containing part number, part class, quantity, and unit cost. Once the vector is filled, the user can request multiple types of inventory details, which are displayed via the console.
Last synced: 25 Mar 2025
https://github.com/heyfoz/cpp-voting-ballot-array-functions
The Voting Ballot Array Functions Program (C++) creates 3 arrays to store candidates, votes, and percentages to simulate a random election winner. The arrays are filled after the program reads an input file titled "Candidates.txt". Functions are used to pass the arrays and calculate the results, which are printed to the console & an output file.
Last synced: 25 Mar 2025
https://github.com/heyfoz/cpp-vector-binary-search
The Vector Binary Search Program (C++) creates and fills a vector with 5000 random integers. Once the vector is filled, the program displays details such as the smallest, largest, and average values. To conclude, the program asks the user to enter an integer. If the integer is found via binary search, the program returns its position.
Last synced: 16 Jul 2026
https://github.com/neo-vortex/tint_acl
Small ACL (Aceess Control List ) written in C++
Last synced: 03 Jul 2026
https://github.com/pawel2000pl/fixed_point
Template for fixed-point operations with a simplified math library (dedicated for RISC-V IM).
cpp fixed-point risc-v taylor-series template
Last synced: 03 Jul 2025
https://github.com/techonit/nodemcu_esp32-manage
🏭 A open source application for manage devices (IOT) on nodemcu-esp32. Send and get reports to server with a api token.
board cpp iot nodemcu-esp32 platformio
Last synced: 06 May 2026
https://github.com/mjbmon/ios-cmake
Projects for IOS apps using CMake.
cmake cpp ios make objective-c objective-c-plus-plus xcode
Last synced: 24 Apr 2026
https://github.com/borisskert/cpp-katas
This repo contains my solutions for some C++ katas submitted in Codewars.
codewars codewars-cpp codewars-solutions cpp igloo-bdd igloo-testing
Last synced: 17 Mar 2025
https://github.com/soodaayush/codeforces
A collection of all my solutions to Codeforces contests and problem sets.
codeforces competitive-programming cpp
Last synced: 24 Mar 2025
https://github.com/soodaayush/arduino-school-yoga-project
An Arduino project that reminds the user to meditate.
Last synced: 27 Apr 2026
https://github.com/garyhilares/rubber-numbers
Arbitrary integer size and floating point precision support library for C++.
bigfloat bigint cpp cpp-library no-dependencies
Last synced: 08 Apr 2025
https://github.com/akazad13/leetcode
I will provide explanations for LeetCode problems in this repository.
cpp graph-algorithms greedy-algorithms leetcode leetcode-cpp leetcode-solutions linked-list sliding-window
Last synced: 08 Apr 2025
https://github.com/ratulsharker/basic-neural-network
Basic neural network for dumb problem
basic-learning cpp neural-networks
Last synced: 03 Jul 2025
https://github.com/fierycod/openmp-class-bench
Zrównoleglenie wstępnego przetwarzania danych przy użyciu OpenMP
Last synced: 28 Feb 2025
https://github.com/jkeresman01/conway-s-game-of-life-
The Game of Life is a cellular automaton, devised by British mathematician John Horton Conway in 1970.
cellular-automata conway-s-game-of-life cpp sfml
Last synced: 03 Jul 2025
https://github.com/sla-ppy/p03-udemy-adv
[A] Took two months off to dedicate every single day to learning C++
Last synced: 11 Jun 2025
https://github.com/sla-ppy/code_bank
[A] Attempt at programming every day using coding challenge sites for 1 problem / day
Last synced: 11 Jun 2025
https://github.com/sla-ppy/seed
[A] Graphical C++ program using SFML to create motivational to-dos
Last synced: 11 Jun 2025
https://github.com/rprakashdass/library-management-system
Library Management System project using C++, designed to enhance C++ programming skills with OOP concepts.
cpp library-management-system library-management-system-cpp object-oriented-programming oops-in-cpp
Last synced: 29 May 2026
https://github.com/supercip971/project-euler
my answers for the 'Project Euler' (https://projecteuler.net/) in c++
Last synced: 09 Apr 2025
https://github.com/shreyas9699/2d_ray_casting
A simple 2D Ray casting using SFML
cpp gamedev raycasting raycasting-engine raytracing sfml
Last synced: 25 Mar 2025
https://github.com/raczu/hash-maps-cpp
A project looking at ways of resolving collisions in hash maps. The aim of the project is to compare the worst-case scenario for inserting, removing and looking up operations.
Last synced: 11 Jun 2025
https://github.com/quentg/connected_plant
IoT project
adafruit-io cpp iot mbed-os reactjs recharts-js
Last synced: 07 May 2026
https://github.com/heyfoz/cpp-cartesian-coordinates-identifier
The Cartesian Coordinates Identifier program (C++) allows the user to enter x and y coordinates, which are used to determine the user's location on a cartesian plane. The resulting location is displayed as output.
cartesian-coordinates cpp identifier location
Last synced: 17 Jun 2026
https://github.com/mid1i/corners-game
Kind of Corners Game on C++ by SFML graphics
Last synced: 25 Mar 2025
https://github.com/gcattt/front-end-kaleidoscope
A little compiler for a non-trivial language
compiler cpp llvm-frontend llvm-tutorial
Last synced: 09 Apr 2025
https://github.com/nstefan002/aisp
AiSP i smer
algorithms cpp data-structures faculty learning
Last synced: 29 May 2026
https://github.com/kader1680/data-structure-algorithms
dsa & algorithm in cpp, python, php, javascript
algorithms algorithms-and-data-structures binary-search cpp javascript php8 python3 quick-sort search-algorithm sorting-algorithms tree
Last synced: 12 Apr 2026
https://github.com/juanpinheirofiap/vinheria_agnello
Códigos dos Hardware - Arduino
arduino-uno cpp esp32 hardware iot-application
Last synced: 30 Apr 2026
https://github.com/jtpeller/sudoku
Cross-platform Sudoku Game written using Flutter!
cmake cpp dart flutter html sudoku sudoku-game swift
Last synced: 12 Apr 2026
https://github.com/piorosen/implement-mnist
Keras H5 to deploy on "Pure C++"
cpp docker h5 keras mnist tensorflow
Last synced: 12 Apr 2026
https://github.com/dsarceno/other
Repositorio dedicado a archivos, problemas, material y programas variados.
bash-script cpp fortran95 gnuplot mathematica python3
Last synced: 12 Apr 2026
https://github.com/arindal1/blind75-proelevate
This Blind 75 DSA sheet from LeetCode contains all the important DSA questions and is designed for quick interview preparation.
algorithms cpp data-structures dsa leetcode leetcode-cpp leetcode-solutions problem-solving
Last synced: 09 Apr 2025
https://github.com/matheusfrancisco/some-simple-projects
Some projects and algorithms implementations for improve my CV
Last synced: 19 Apr 2026
https://github.com/tdegeus/frictionqpotspringblock
Spring-block friction model with local disordered potential energy landscape
cpp depinning finite-difference friction python
Last synced: 21 Jan 2026
https://github.com/mericluc/mcts-tic-tac-toe
MCTS application : Tic Tac Toe
cpp mcts mcts-algorithm tic-tac-toe
Last synced: 04 Apr 2025
https://github.com/tsnsoft/rpcpp_wxwidgets_win2in1d
Пример двухоконной программы (Frame и Dialog) на C++ с использованием wxWidgets в RedPanda-CPP
cpp dialog frame redpanda-cpp wxwidgets
Last synced: 22 Dec 2025
https://github.com/basmasalim/cpp_problems
C++ Problem Solving is an open-source repository dedicated to helping beginners improve their C++ skills. This project focuses on solving beginner-level problems, tasks, and providing solutions to enhance understanding.
codeforces competitive-programming cpp problem-solving
Last synced: 04 Jul 2025
https://github.com/diegoquintanilha/proceduralpollockweb
ProceduralPollockWeb is an open source C++/WebGPU project that generates abstract, math-based art using procedurally generated pixel shaders.
art cpp emscripten procedural-generation shader webgpu wgsl
Last synced: 29 May 2026
https://github.com/berracode/sensores-motobombas
Gestionar el llenado de un tanque, mediante sensores que permitan saber si el tanque está lleno a media capacidad o vacio
Last synced: 09 Apr 2025
https://github.com/pierpierpy/textcpp
textual analysis python package in C++ with Python interface
Last synced: 30 Apr 2026
https://github.com/mbdanielcrespo/viewer_ui
This is a basic UI project that will server as a template for future simulation and visualization projects.
3d-viewer cpp raylib ui-components
Last synced: 23 Apr 2025
https://github.com/starkris51/sigmaboy
Retarded Gameboy emulator made in SDL3 C++
Last synced: 23 Apr 2025
https://github.com/aisha-zahid/softwaretesting-cunit
C++ unit testing project with Input Space Partitioning, Edge Pair Coverage, Control Flow Graphs, and CUnit in Eclipse.
cfg cpp cunit eclipse-cdt edge-pair-coverage functional-testing isp software-testing test-cases unit-testing white-box-testing
Last synced: 23 Apr 2025
https://github.com/spo0kydev/datastructures-cpp
Data Structures in C++
academic algortithms c-plus-plus computer-science cpp data-structures datastructures learning no-stl self-study
Last synced: 23 Apr 2025
https://github.com/lgsantos31415/navegador
Projeto desenvolvido com o objetivo de explorar e compreender o funcionamento básico de um navegador web.
cpp fltk-gui-library gumbo html5 httplib webbrowser
Last synced: 23 Apr 2025
https://github.com/allyedge/allyignore-cpp
A tool that finds and removes unnecessary lines from .gitignore files.
c-plus-plus cpp git gitignore gitignore-generator
Last synced: 19 May 2026
https://github.com/yottaawesome/cmake-playground
CMake, Testing and Tooling for C/C++ course
Last synced: 25 Mar 2025
https://github.com/esgameco/minesweeper
A working minesweeper clone built in C++/SFML.
Last synced: 09 Apr 2025
https://github.com/yanboishere/cpp_primer_study_diary
我在学习C++ primer(第五版)过程中的代码仓库
Last synced: 01 Apr 2025
https://github.com/evoaga/raylib-pathfinding
cpp ecs entt game gamedev pathfinding raylib
Last synced: 09 Apr 2025
https://github.com/kplanisphere/polar-function-graphing-bresenham
Proyecto 2 - Graficación
algorithm-implementation bresenhams-algorithm computer-graphics cpp data-visualization graphing opengl polar-coordinates rose-curve
Last synced: 29 Apr 2026
https://github.com/patrixr/canvas
Concept game built with OpenFrameworks
concept-game cpp game game-development openframeworks
Last synced: 04 Jul 2025