{"id":21171507,"url":"https://github.com/tebogoyungmercykay/procedural_programming_in_cpp","last_synced_at":"2026-05-19T18:12:28.321Z","repository":{"id":61855487,"uuid":"555784957","full_name":"TebogoYungMercykay/Procedural_Programming_in_CPP","owner":"TebogoYungMercykay","description":"C++ is a cross-platform language that can be used to create high-performance applications. C++ was developed by Bjarne Stroustrup, as an extension to the C language. C++ gives programmers a high level of control over system resources and memory. The language was updated 4 major times in 2011, 2014, 2017, and 2020 to C++11, C++14, C++17, C++20.","archived":false,"fork":false,"pushed_at":"2024-10-12T16:35:15.000Z","size":779,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"dev","last_synced_at":"2025-01-21T10:51:16.208Z","etag":null,"topics":["2d-aarays","2d-dynamic-arrays","arrays-and-functions","bar-graph","bubble-sort","cmath-liabrary","cpp","equations","if-statements","is-prime","linear-search","loops","read-from-file","recursion","selection-sort","turing-machines"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TebogoYungMercykay.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-10-22T10:20:55.000Z","updated_at":"2024-10-12T16:35:19.000Z","dependencies_parsed_at":"2024-11-20T16:06:33.102Z","dependency_job_id":"ded72bae-36a5-472a-a879-202aeb2d213c","html_url":"https://github.com/TebogoYungMercykay/Procedural_Programming_in_CPP","commit_stats":null,"previous_names":["tebogoyungmercykay/procedural_programming_in_cpp","tebogoyungmercykay/cpp---procedural-programming"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProcedural_Programming_in_CPP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProcedural_Programming_in_CPP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProcedural_Programming_in_CPP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TebogoYungMercykay%2FProcedural_Programming_in_CPP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TebogoYungMercykay","download_url":"https://codeload.github.com/TebogoYungMercykay/Procedural_Programming_in_CPP/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243617335,"owners_count":20320054,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["2d-aarays","2d-dynamic-arrays","arrays-and-functions","bar-graph","bubble-sort","cmath-liabrary","cpp","equations","if-statements","is-prime","linear-search","loops","read-from-file","recursion","selection-sort","turing-machines"],"created_at":"2024-11-20T16:06:42.288Z","updated_at":"2025-12-28T19:00:14.893Z","avatar_url":"https://github.com/TebogoYungMercykay.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# C++ Procedural/Linear Programming\r\n\r\n\u003cimg src=\"images/readme.png\" style=\"width: 100%; height: 40%;\" /\u003e\r\n\r\n## Description\r\n\r\nThis repository is dedicated to solving **Linear Programming** problems in **C++**. It includes various algorithms and methods, all implemented as part of my practice and assignments for coding modules. The focus is on building efficient solutions using fundamental C++ programming concepts.\r\n\r\n## Requirements\r\n\r\nBefore running the C++ code, ensure you have the following set up:\r\n\r\n- **IDE Recommendation**: Install an IDE that supports C++ compilation and execution, such as **Visual Studio Code**.\r\n- **Setting up WSL Ubuntu terminal**: Follow this [guide](https://www.youtube.com/watch?v=fp45HpZuhS8\u0026t=112s) to set up WSL on Visual Studio Code for a Linux-based terminal environment.\r\n- **Compiler Path Configuration**: If you encounter issues with compiler paths in VS Code, refer to this [forum discussion](https://forums.unrealengine.com/t/ue-4-27-how-to-fix-issues-in-visual-studio-code-red-squiggles-and-unable-to-resolve-configuration-with-compilerpath-c-program/568488) for troubleshooting steps.\r\n\r\n## Makefile\r\n\r\nA Makefile is provided to simplify the process of compiling and running the C++ code via the terminal.\r\n\r\n- Makefile Commands:\r\n  - **`make`**: Compiles the `.cpp` files and generates an executable named `main`.\r\n  - **`make run`**: Runs the executable using `valgrind` to check for memory leaks.\r\n  - **`make clean`**: Removes the executable and object files, and clears the terminal.\r\n  - **`make tar`**: Compresses the source files and the Makefile into a `.tar.gz` archive.\r\n  - **`make untar`**: Extracts files from the `.tar.gz` archive.\r\n\r\n- Makefile\r\n\t```Makefile\r\n\tmain:\r\n\t\tg++ -g *.cpp -std=c++98 -pedantic -o main\r\n\r\n\tclean:\r\n\t\trm -f *.o *.tar.gz main\r\n\t\treset\r\n\t\tclear\r\n\r\n\trun:\r\n\t\tvalgrind --leak-check=full ./main\r\n\r\n\ttar:\r\n\t\ttar -cvz *.* -f Code.tar.gz\r\n\r\n\tuntar:\r\n\t\ttar -zxvf *.tar.gz\r\n\t```\r\n\r\n## Contributing\r\n\r\nThis project is primarily for personal learning and demonstration purposes. However, if you have suggestions for improvements, feel free to open an issue or submit a pull request.\r\n\r\nTo contribute:\r\n\r\n1. Fork the repository.\r\n2. Create a new branch for your feature or fix.\r\n3. Commit your changes.\r\n4. Submit a pull request with a clear description.\r\n\r\n## License\r\n\r\nThis project is open source. Please refer to the repository for specific license details.\r\n\r\n---\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftebogoyungmercykay%2Fprocedural_programming_in_cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftebogoyungmercykay%2Fprocedural_programming_in_cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftebogoyungmercykay%2Fprocedural_programming_in_cpp/lists"}