https://github.com/voorhs/c-language-workshop
Задания практикума по Си/Си++
https://github.com/voorhs/c-language-workshop
bash dynamic-array file-system list object-oriented-programming
Last synced: 4 months ago
JSON representation
Задания практикума по Си/Си++
- Host: GitHub
- URL: https://github.com/voorhs/c-language-workshop
- Owner: voorhs
- Created: 2021-09-26T09:51:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T09:35:31.000Z (over 2 years ago)
- Last Synced: 2024-12-29T00:12:23.128Z (6 months ago)
- Topics: bash, dynamic-array, file-system, list, object-oriented-programming
- Language: C++
- Homepage:
- Size: 850 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C Language Workshop
Programming at university classes. 'Task'-named folders contain training C code, 'Prac'-named --- C++ code.
Big projects:
- [[task 5]](https://github.com/voorhs/C-Language-Workshop/tree/main/Task%205.%20MyShell) own implementation of [bash pipes](https://stackoverflow.com/questions/9834086/what-is-a-simple-explanation-for-how-pipes-work-in-bash) as interpreter
- [[intepreter]](https://github.com/voorhs/C-Language-Workshop/tree/main/interpreter) model language iterpreter using lexical analyzer at [lex.cpp](https://github.com/voorhs/C-Language-Workshop/blob/main/interpreter/src/lex.cpp), recursive parser at [parser.cpp](https://github.com/voorhs/C-Language-Workshop/blob/main/interpreter/src/parser.cpp), reversed polish notation executer at [executer.cpp](https://github.com/voorhs/C-Language-Workshop/blob/main/interpreter/src/executer.cpp)