CS-WIKI101
Loading...
Searching...
No Matches
CS-WIKI101

C++ Logo

C++

C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or C with Classes.

NOTE Tested on macOS Sonoma 14.0

Table of contents

  • Installation
    • OSX (MacOS)
  • References
  • How to compile and run C++ programs
  • FAQ (Frequently Asked Questions)

Installation

NOTE I recommend you to install Homebrew. It is a package manager for macOS. It will help you to install many other packages in macOS.

You can install Homebrew by following this instruction How to Install Homebrew on macOS

OSX (MacOS)

OSX or macOS is special because has a built-in C++ compiler. You can check it by typing g++ --version in Terminal

g++ --version

References

Source Description
C++ in 100 Seconds C++ in 100 Seconds YouTube video by FireShip
LLVM Documentation Clang: a C language family frontend for LLVM

How to compile and run C++ programs

FAQ (Frequently Asked Questions)

You can find answers to frequently asked questions about Git and GitHub in the FAQ.


Need assistance? Check out my discussion board or review the GitHub status page.

© 2023 AppleBoiy • Code of Conduct • [MIT License](LICENSE)

Back to Top