C++

페이지 정보

profile_image
작성자남대문지기 조회 15회 작성일 2021-04-17 14:18:26 댓글 0

본문

C++ Tutorial for Beginners - Full Course

This course will give you a full introduction into all of the core concepts in C++.

Want more from Mike? He's starting a coding RPG/Bootcamp - https://simulator.dev/

⭐️ Contents ⭐
⌨️ (0:00:00) Introduction
⌨️ (0:01:38) Windows Installation
⌨️ (0:04:54) Mac Installation
⌨️ (0:08:44) Setup \u0026 Hello World
⌨️ (0:12:29) Drawing a Shape
⌨️ (0:19:55) Variables
⌨️ (0:31:43) Data Types
⌨️ (0:39:15) Working With Strings
⌨️ (0:49:00) Working With Numbers
⌨️ (0:59:41) Getting User Input
⌨️ (1:05:32) Building a Calculator
⌨️ (1:09:28) Building a Mad Libs
⌨️ (1:13:45) Arrays
⌨️ (1:20:03) Functions
⌨️ (1:29:47) Return Statement
⌨️ (1:35:22) If Statements
⌨️ (1:47:15) If Statements (con't)
⌨️ (1:55:58) Building a Better Calculator
⌨️ (2:02:20) Switch Statements
⌨️ (2:10:47) While Loops
⌨️ (2:18:53) Building a Guessing Game
⌨️ (2:29:18) For Loops
⌨️ (2:38:32) Exponent Function
⌨️ (2:45:21) 2d Arrays \u0026 Nested Loops
⌨️ (2:54:55) Comments
⌨️ (2:59:11) Pointers
⌨️ (3:13:26) Classes \u0026 Objects
⌨️ (3:25:40) Constructor Functions
⌨️ (3:34:41) Object Functions
⌨️ (3:41:43) Getters \u0026 Setters
⌨️ (3:54:04) Inheritance

Course developed by Mike Dane. Check out his YouTube channel for more great programming courses: https://www.youtube.com/channel/UCvmINlrza7JHB1zkIOuXEbw

Follow Mike on Twitter: https://twitter.com/GiraffeAcademy

The Giraffe Academy website: http://www.giraffeacademy.com/

⭐️Other full courses by Giraffe Academy on our channel ⭐️
C:

Python:

SQL:

Ruby:

PHP:


--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://medium.freecodecamp.org

And subscribe for new videos on technology every day: https://youtube.com/subscription_center?add_user=freecodecamp

1. Programación en C++ || Primer programa en C++

Puedes apuntarte al curso completo en la siguiente plataforma:
Udemy: https://goo.gl/7kML7Z

En este vídeo vamos a crear nuestro primer programa en c++, el "Hola mundo :D ", y además veremos como podemos dar saltos de linea en la consola, ya sea por endl o por "\
".

Descarga DEV-C++ en el siguiente enlace (Solo uno):
Mega: https://mega.nz/#!cIBDRCTS!83Kg0i_QxXA65Z9bXSO6WlBKKJqGvxVP0nbEfs1VqF4
Mediafire: http://www.mediafire.com/file/cjkh2ynu0a1ia3s/Dev-Cpp+5.5.3+TDM-GCC+x64+4.7.1+Setup.exe

Visita mi sitio web para más cursos:
https://programacionats.zenler.com

Sigueme por las redes sociales:

Facebook ProgramacionATS: https://goo.gl/sqmEE1
Twiter: https://goo.gl/WE4oaP
Hotmail: alejandro.acb@hotmail.com
Facebook personal: https://goo.gl/xL9qLl
instagram: @alejandroats

Cuenta paypal para donaciones: migueltaboadas@hotmail.com

C++ FULL COURSE For Beginners (Learn C++ in 10 hours)

This is a full C++ programming course. It consists of many lectures whose goal is to take you from beginner to advanced programming level.
I recommend watching the entire video because later lectures require knowledge from previous ones. You can find the full contents of this course bellow:

Content:

00:00:00 – Introduction, Goals of the course, How course is structured?
00:01:31 – Do this before starting the course
00:02:41 – Introduction to C++ (What is C++? What kind of apps can you build with C++? Why C++ was created?)
00:06:39 – What is source code, object code, compiler, algorithm?
00:08:42 - Visual Studio 2019 – Creating a first project (setup)
00:11:32 - Visual Studio 2019 basics explained and first “Hello World” program
00:29:51 - Introduction to variables
00:44:36 – Rules for naming variables
00:52:15 – Data types in C++ and how to use sizeof operator
01:01:58 - Data type overflow
01:05:00 – What is ASCII table
01:09:50 - Simple, fun program for ciphering words into ASCII
01:18:12 - If/else statement (Build a program that checks odd/even numbers + flowchart explanation)
01:35:52 - Nested if/else statement (Build a program that determines the type of a triangle + flowchart)
01:55:50 - Operators in C++ (arithmetic, relational, logical, assignment operators)
02:21:02 - Swapping values of two variables with or without a third variable
02:29:20– Build BMI Calculator application + flowchart
02:49:55 - Ternary (Conditional) operator (Build a Guessing game app)
03:01:00 - Switch/case statement part 1 (Build Calculator app)
03:26:36 - Switch/case statement part 2 (Build program that checks number of days in a month)
03:39:35 - While loop part 1 + infinite loop example
03:53:39 - While loop part 2 (Build a program for counting digits of a number)
04:12:39 - While loop part 3 (Build a program for reversing digits of a number)
04:25:25 - Do while loop (Program for PIN validation)
04:39:09 – What is the difference between While loop and Do While loop
04:40:34 - For loop (Build a program for calculating the factorial of a number)
04:58:12 – Nested loops (Nesting do while loop and for loop)
05:11:08 – Nested for loop (Build Multiplication table app)
05:21:45 – Program for drawing rectangle shape
05:33:05 – Program for drawing triangle and inverted/reversed triangle shapes
05:44:30 – Introduction to functions
05:56:02 – Functions with parameters/arguments (multiple and default)
06:11:42 - Function return statement (Build program for checking prime numbers)
06:37:39 - Function overloading
06:48:06 – Build ATM app
07:03:03 - Generic functions and templates
07:14:30 – Recursion and recursive functions
07:30:01 – Introduction to OOP, What are classes and objects
07:42:06 – OOP Constructors and class methods
07:57:10 – OOP Encapsulation, GIT: https://github.com/TrueCodeBeauty/EncapsulationCpp.git
08:08:31 – OOP Inheritance, GIT: https://github.com/TrueCodeBeauty/InheritanceCpp.git
08:24:59 – OOP Polymorphisam, GIT: https://github.com/TrueCodeBeauty/PolymorphismCpp.git
08:40:04 - Introduction to pointers
08:51:14 - Void pointers
09:06:27 - Pointers and arrays
09:19:18 - Return multiple values from a function using pointers
09:34:50 - Dynamic arrays, create/change arrays at runtime
09:48:35 – Multidimensional dynamic arrays, Two-dimensional array
10:07:00 - Detecting errors in code using PVS Studio
10:17:19 - Explaining Memory Leaks
10:26:25 - Bloopers

After finishing this course, I recommend learning about Data Structures from this course - https://youtube.com/playlist?list=PL43pGnjiVwgS5njI0HMGnqSH18tSSuLz_

Get a month free trial of the PVS-Studio:
https://www.viva64.com/cb_pvs
Create Modern Apps, Download Your FREE C++Builder Trial Today: https://bit.ly/CppBuilderFree

Follow me on other platforms:
Instagram - https://www.instagram.com/truecodebeauty/
Twitter - https://twitter.com/TrueCodeBeauty

... 

#C++

댓글목록

등록된 댓글이 없습니다.

전체 17,018건 1 페이지
게시물 검색
Copyright © www.sisa919.com. All rights reserved.  연락처 : help@ggemtv.com