Skip to content

yienchou/CppStudyNotes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CppStudyNotes

Study notes for C++ programming

Compling the program in the terminal

g++ -Wall fileName.cpp -o ex // '-Wall' for displaying 'all warnings'

Running the program in the terminal

./ex

Make-Build System

touch Makefile // Create Makefile
touch .gitignore // Used to ignore the executable files; '.' makes it invisible from the folder

Visual Control System Git

git init // Initialize an empty git repository under current directory
git status // Check the current status
git add . // Add all files to be tracked on
git rm --cached <filename> // Remove file
git commit
gitk --all& // Show visually what's going on
git diff // Show changings in the source code
git checkout // Go back to the old timeline/ forward to the newest commit (master)

Lectures on Dynamic Programming...

https://www.youtube.com/watch?v=OQ5jsbhAv_M

About

Study notes for C++ programming

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages