Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nazrulworld/learn-c
C/C++ Learning
https://github.com/nazrulworld/learn-c
Last synced: about 1 month ago
JSON representation
C/C++ Learning
- Host: GitHub
- URL: https://github.com/nazrulworld/learn-c
- Owner: nazrulworld
- License: apache-2.0
- Created: 2014-01-07T17:59:49.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-08T11:11:26.000Z (almost 11 years ago)
- Last Synced: 2023-03-27T11:58:07.876Z (over 1 year ago)
- Language: C
- Size: 141 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
learn-c
=======# C/C++ Learning
Install Valgrind
# 1) Download it (use wget if you don't have curl)
curl -O http://valgrind.org/downloads/valgrind-3.9.0.tar.bz2# use md5sum to make sure it matches the one on the site
md5sum valgrind-3.9.0.tar.bz2# 2) Unpack it.
tar -xjvf valgrind-3.9.0.tar.bz2# cd into the newly created directory
cd valgrind-3.9.0# 3) configure it
./configure# 4) make it
make# 5) install it (need root)
sudo make install