├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── exams ├── 5778 │ ├── example-exam-solution.pdf │ ├── example-exam.pdf │ ├── moed-a-solution.docx │ ├── moed-a-solution.pdf │ ├── moed-a.docx │ ├── moed-a.pdf │ ├── moed-b-solution.docx │ ├── moed-b-solution.pdf │ ├── moed-b.docx │ └── moed-b.pdf ├── 5779 │ ├── moed-a-solution.docx │ ├── moed-a-solution.pdf │ ├── moed-a.docx │ ├── moed-a.pdf │ ├── moed-b-solution.docx │ ├── moed-b-solution.pdf │ ├── moed-b.docx │ └── moed-b.pdf ├── 5780 │ ├── moed-a-solution.docx │ ├── moed-a-solution.pdf │ ├── moed-a.docx │ └── moed-a.pdf ├── 5781 │ ├── moed-a-solution.docx │ ├── moed-a-solution.pdf │ ├── moed-a.docx │ ├── moed-a.pdf │ ├── moed-b-solution.docx │ ├── moed-b-solution.pdf │ ├── moed-b.docx │ └── moed-b.pdf ├── 5782 │ ├── moed-a.pdf │ └── moed-b.pdf ├── 5783 │ ├── moed-a-solution.docx │ ├── moed-a-solution.pdf │ ├── moed-a.docx │ ├── moed-a.pdf │ ├── moed-b-solution.docx │ ├── moed-b-solution.pdf │ ├── moed-b.docx │ └── moed-b.pdf ├── 5784 │ ├── moed-a-solution.docx │ ├── moed-a.docx │ ├── moed-a.pdf │ ├── moed-b-solution.docx │ └── moed-b-solution.pdf ├── how-to-study.odt └── how-to-study.pdf ├── gitcommitpush.bat └── gitpull.bat /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 erelsgl-at-ariel 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # A makefile for building pdf files from the text (odt files) and slides (odp files). 3 | # Author: Erel Segal-Halevi 4 | # Since: 2019-02 5 | 6 | SOURCES_ODP=$(shell find . -name '*.odp') 7 | TARGETS_ODP=$(subst .odp,.pdf,$(SOURCES_ODP)) 8 | SOURCES_ODT=$(shell find . -name '*.odt') 9 | TARGETS_ODT=$(subst .odt,.pdf,$(SOURCES_ODT)) 10 | SOURCES_DOC=$(shell find . -name '*.doc*') 11 | TARGETS_DOC=$(subst .doc,.pdf,$(subst .docx,.pdf,$(SOURCES_DOC))) 12 | SOURCES_ODS=$(shell find . -name '*.ods') 13 | TARGETS_XSLX=$(subst .ods,.xlsx,$(SOURCES_ODS)) 14 | 15 | all: $(TARGETS_ODP) $(TARGETS_ODT) $(TARGETS_DOC) $(TARGETS_XSLX) 16 | # 17 | git commit -m "update pdf and xslx files" 18 | git push 19 | echo Done! 20 | sleep 86400 21 | 22 | %.pdf: %.odt 23 | # 24 | libreoffice --headless --convert-to pdf $< --outdir $(@D) 25 | git add $@ 26 | git add $< 27 | 28 | %.pdf: %.doc* 29 | # 30 | libreoffice --headless --convert-to pdf $< --outdir $(@D) 31 | git add $@ 32 | git add $< 33 | 34 | %.pdf: %.odp 35 | # 36 | libreoffice --headless --convert-to pdf $< --outdir $(@D) 37 | git add $@ 38 | git add $< 39 | 40 | %.xlsx: %.ods 41 | # 42 | libreoffice --headless --convert-to xlsx $< --outdir $(@D) 43 | git add $@ 44 | git add $< 45 | 46 | clean: 47 | rm -f *.pdf 48 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # cpp-course 2 | Materials for a course in C++ 3 | -------------------------------------------------------------------------------- /exams/5778/example-exam-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/example-exam-solution.pdf -------------------------------------------------------------------------------- /exams/5778/example-exam.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/example-exam.pdf -------------------------------------------------------------------------------- /exams/5778/moed-a-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-a-solution.docx -------------------------------------------------------------------------------- /exams/5778/moed-a-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-a-solution.pdf -------------------------------------------------------------------------------- /exams/5778/moed-a.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-a.docx -------------------------------------------------------------------------------- /exams/5778/moed-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-a.pdf -------------------------------------------------------------------------------- /exams/5778/moed-b-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-b-solution.docx -------------------------------------------------------------------------------- /exams/5778/moed-b-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-b-solution.pdf -------------------------------------------------------------------------------- /exams/5778/moed-b.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-b.docx -------------------------------------------------------------------------------- /exams/5778/moed-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5778/moed-b.pdf -------------------------------------------------------------------------------- /exams/5779/moed-a-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-a-solution.docx -------------------------------------------------------------------------------- /exams/5779/moed-a-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-a-solution.pdf -------------------------------------------------------------------------------- /exams/5779/moed-a.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-a.docx -------------------------------------------------------------------------------- /exams/5779/moed-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-a.pdf -------------------------------------------------------------------------------- /exams/5779/moed-b-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-b-solution.docx -------------------------------------------------------------------------------- /exams/5779/moed-b-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-b-solution.pdf -------------------------------------------------------------------------------- /exams/5779/moed-b.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-b.docx -------------------------------------------------------------------------------- /exams/5779/moed-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5779/moed-b.pdf -------------------------------------------------------------------------------- /exams/5780/moed-a-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5780/moed-a-solution.docx -------------------------------------------------------------------------------- /exams/5780/moed-a-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5780/moed-a-solution.pdf -------------------------------------------------------------------------------- /exams/5780/moed-a.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5780/moed-a.docx -------------------------------------------------------------------------------- /exams/5780/moed-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5780/moed-a.pdf -------------------------------------------------------------------------------- /exams/5781/moed-a-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-a-solution.docx -------------------------------------------------------------------------------- /exams/5781/moed-a-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-a-solution.pdf -------------------------------------------------------------------------------- /exams/5781/moed-a.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-a.docx -------------------------------------------------------------------------------- /exams/5781/moed-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-a.pdf -------------------------------------------------------------------------------- /exams/5781/moed-b-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-b-solution.docx -------------------------------------------------------------------------------- /exams/5781/moed-b-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-b-solution.pdf -------------------------------------------------------------------------------- /exams/5781/moed-b.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-b.docx -------------------------------------------------------------------------------- /exams/5781/moed-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5781/moed-b.pdf -------------------------------------------------------------------------------- /exams/5782/moed-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5782/moed-a.pdf -------------------------------------------------------------------------------- /exams/5782/moed-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5782/moed-b.pdf -------------------------------------------------------------------------------- /exams/5783/moed-a-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-a-solution.docx -------------------------------------------------------------------------------- /exams/5783/moed-a-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-a-solution.pdf -------------------------------------------------------------------------------- /exams/5783/moed-a.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-a.docx -------------------------------------------------------------------------------- /exams/5783/moed-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-a.pdf -------------------------------------------------------------------------------- /exams/5783/moed-b-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-b-solution.docx -------------------------------------------------------------------------------- /exams/5783/moed-b-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-b-solution.pdf -------------------------------------------------------------------------------- /exams/5783/moed-b.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-b.docx -------------------------------------------------------------------------------- /exams/5783/moed-b.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5783/moed-b.pdf -------------------------------------------------------------------------------- /exams/5784/moed-a-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5784/moed-a-solution.docx -------------------------------------------------------------------------------- /exams/5784/moed-a.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5784/moed-a.docx -------------------------------------------------------------------------------- /exams/5784/moed-a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5784/moed-a.pdf -------------------------------------------------------------------------------- /exams/5784/moed-b-solution.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5784/moed-b-solution.docx -------------------------------------------------------------------------------- /exams/5784/moed-b-solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/5784/moed-b-solution.pdf -------------------------------------------------------------------------------- /exams/how-to-study.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/how-to-study.odt -------------------------------------------------------------------------------- /exams/how-to-study.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erelsgl-at-ariel/cpp-course/630e67dc26da3e29f575354a450ef4d08fbd020f/exams/how-to-study.pdf -------------------------------------------------------------------------------- /gitcommitpush.bat: -------------------------------------------------------------------------------- 1 | git add * 2 | git commit -m "Updates from Erel" 3 | git pull 4 | git push 5 | pause 6 | -------------------------------------------------------------------------------- /gitpull.bat: -------------------------------------------------------------------------------- 1 | git pull 2 | pause 3 | --------------------------------------------------------------------------------