Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 316 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 316 Bytes

cpp

This is a repo dedicated to learning fundamentals of c++.

Notes

Compiling

Compiling c++ code via cc and gcc often results in linker errors. A workaround I found is to use the g++ compiler, which automatically links most of the essential libraries.

$ g++ [file to compile]
$ ./compiled_file