Skip to content

Repository for Beginning Cpp Programming, Section 04, by Frank J. Mitropoulos, Ph.D

Notifications You must be signed in to change notification settings

SystemsScientist/Beginning-Cpp-Programming-Section-04

Repository files navigation

Beginning C++ Programming - From Beginner to Beyond

This repository contains getting started instructions for Beginning C++ Programming: From Beginner to Beyond by Frank J. Mitropoulos, Ph.D., which covers compiling, building, and compiling simple programs, compiler, linker, run-time, and logic errors.

Please note, this repository is a work in progress and will be updated over time.

Please feel free to reach out to me at devildoc300@gmail.com if you have any questions or comments. In addition, feel free to utilize the source code for your consumption and edification.

~ Matt Johnson

Technical Notes and Considerations

To compile, build, and execute the Section 04 files and directories,

(1) click on the blue "Code" button above and click the
    "Download Zip" link, or
(2) copy the code and paste it directly into your preferred
    Integrated Development Environment (IDE), CLion, CodeLite
    or Code::Blocks, for example, or your preferred text editor,
    Vim, Nano, or Emacs, for example, and either   
(3) compile, build, and execute the files in your IDE, or
(4) use the following command-line script in C++:

	$ g++ name_of_file.cpp -o main
	$ ./main

(5) use the following command-line script in C:

	$ gcc name_of_file.c -o main
	$ ./main

(6) use the following command-line script in Python:

	$ python3 name_of_file.py

About

Repository for Beginning Cpp Programming, Section 04, by Frank J. Mitropoulos, Ph.D

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published