GithubHelp home page GithubHelp logo

fast-c-plus-plus's Introduction

Source: https://www.geeksforgeeks.org/c-plus-plus/

A Fast C++ Tutorial For Beginners.

C++ is a very important programming language, even though python is really hot in today's AI context.

Introduction.

This is a basic tutorial of C++ for beginners. From Basic Datatypes to Standard Template Library(STL).
It is mainly based on the book C++ in One Hour a Day, Sams Teach Yourself(8th Edition).
-------Update 2020-3-1-------
Adding a "A Deep Understanding of STL's Source Code" part in Chinese.

C++ IDE Recommend

  • Visual Studio is highly recommended if you do c++ development on Windows or Mac. It is free(the community version), and powerful, which is suited to large project development.
  • Clion is also highly recommended. It is cross-platform(pc, mac, linux), powerful and easy to compile and debug. But it is not free and don't have the community version. If you are a student, you can apply for a free individual license for one year.
  • Some lightweight tools: Code Blocks | Visual Studio Code | Qt, open source version
  • Online IDE runs in browser: Cpp Online

Trouble Shoot During Clion Installation

Error after you type in you username and password: Can not connect to the remove sever, ..., then you should edit your hosts file(/etc/hosts on Linux) to comment the urls that related to JetBrains.

Hello World!

#include <iostream>

int main(){
  std::cout << "Hello World!" << std::endl;
  return 0;
}

Tutorial Catalogue

First, I assume that you have some basic knowledge of C or C++.
Before we start, let's walk through the Basic Introduction About C++ roughly to recall some basic and important points. (All the codes in this introduction are from this tutorial video: https://www.youtube.com/watch?v=vLnPwxZdW4Y, I just sort the video content into text form.)

fast-c-plus-plus's People

Contributors

huixxi avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.