██████╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗███████╗███████╗████████╗██╗ ██████╗ ███╗ ██╗███████╗
██╔════╝ ██╔══██╗ ██╔══██╗ ██╔═══██╗██║ ██║██╔════╝██╔════╝╚══██╔══╝██║██╔═══██╗████╗ ██║██╔════╝
██║ ██████╔╝ ██████╔╝ ██║ ██║██║ ██║█████╗ ███████╗ ██║ ██║██║ ██║██╔██╗ ██║███████╗
██║ ██╔═══╝ ██╔═══╝ ██║▄▄ ██║██║ ██║██╔══╝ ╚════██║ ██║ ██║██║ ██║██║╚██╗██║╚════██║
╚██████╗ ██║ ██║ ╚██████╔╝╚██████╔╝███████╗███████║ ██║ ██║╚██████╔╝██║ ╚████║███████║
╚═════╝ ╚═╝ ╚═╝ ╚══▀▀═╝ ╚═════╝ ╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝
This repository is my student assignment submission based on C++ programming questions from the C4 Knowledge Seekers website
This project contains:
- Topic-wise C++ question sets (
00-Questions.md) - C++ solution files (
que1.cpp,que2.cpp, ...) - Compiled executables for many programs (
.exe) - A simple HTML website to navigate assignment topics and sections
Each topic is stored in a separate folder using this naming pattern:
<topic-number>-<topic-name>_<total-questions>
Available topic folders:
01-Single_Dimension_Arrays_4302-Functions_703-Strings_5004-Multi_Dimension_Arrays_1205-Basic_Programming_Constructs_11306-Inheritance_1007-Data_Conversion_1608-Object_Oriented_Programming_3109-Operator_Overloading_810-Virtual_Functions_1311-File_Handling_16
Total listed questions across all topics: 319
index.html- main assignment homepagewebpages/- topic pages and stylesheetassets/- image resources used by the site
To view the website, use giythub deployed page.
Example :
g++ que1.cpp -o que1.exe ; ./que1.exe
In most topic folders:
00-Questions.mdcontains the list of assignment questions.queN.cppfiles contain C++ code solutions.- Some helper or generated files may also exist (for example temporaryrunner.cpp files or text files for file handling tasks).
This repository is prepared for learning and assignment submission purposes. The goal is to practice C++ fundamentals topic-by-topic through structured problem solving.