How the C++ Compiler Works

  Рет қаралды 807,337

The Cherno

The Cherno

Күн бұрын

Пікірлер: 933
@sonictimm
@sonictimm 5 жыл бұрын
"But we're not talking about Linking. The video about that is in the description" >Clicks "So the first stage is actually compiling, I made an entire video about that.. Link is in the video description" WARNING: Infinite Loop Detected
@polam9799
@polam9799 4 жыл бұрын
Deadlock found!
@Joyexer
@Joyexer 4 жыл бұрын
You clearly need a break here...
@skilz8098
@skilz8098 4 жыл бұрын
It's very recursive...
@sebastiannicolasgiles3659
@sebastiannicolasgiles3659 4 жыл бұрын
#ifndef _linking_video_H_ *link to video* #endif
@mrpedrobraga
@mrpedrobraga 4 жыл бұрын
#pragma once
@kevnar
@kevnar 7 жыл бұрын
I've been programming for 20 years, and I actually learned something new here. Thanks!
@momokoko8811
@momokoko8811 6 жыл бұрын
That sounds pathetic, to be honest.
@neelimgoswami6336
@neelimgoswami6336 6 жыл бұрын
so many years taken
@jack76510
@jack76510 6 жыл бұрын
You should feel really bad about yourself making money out of something you're not professional enough
@okmanek69
@okmanek69 6 жыл бұрын
Hold on, we have a badass over here xD
@batabatonica
@batabatonica 6 жыл бұрын
Guys he obviously doesn't need to know how the compiler works while writting code at his job, yeah it's nice an interesting to know, he pointed that out. Shaming him is nonsense.
@guycpsi
@guycpsi 7 жыл бұрын
Trying to master C++ for five years. You are the first person that makes sense!
@Skulltroxx
@Skulltroxx 4 жыл бұрын
how much progress have you made yet?
@SK-yo5nl
@SK-yo5nl 4 жыл бұрын
@@Skulltroxx Watch Mr. Hendricks life story in Silicon Valley 😉
@skilz8098
@skilz8098 4 жыл бұрын
Cherno is very good, but I have also found a few others that you can check out... You can look at Jason Turner's, Javidx9's {OneLoneCoder}, and Bisqwit's channels. A little bit different but Ben Eater explains Computer Science and Computer Engineering very well too, and for any advanced math topics, 3Blue1Brown. I have found these to be some of my favorite channels. Also for C++ if you want an in-depth explanation of the most commonly used std library classes, containers and algorithms check out Bo Qian. For course study, Standford and MIT have great online videos of their courses... There are a few others that I like but they are specialized as they work with APIs such as Direct X, OpenGL, and Vulkan... Other channels pertain to hardware design directly and the process of designing an Instruction Set, Assembler and Assembly language for a custom CPU and its ISA (Instructure Set Architecture). Such as Bilkent Online Courses for their CS-224 course.
@gladatusbob4497
@gladatusbob4497 4 жыл бұрын
@@skilz8098 so much value from one comment thank you very much, may the force be with you
@ThatGuyDownInThe
@ThatGuyDownInThe 4 жыл бұрын
@@skilz8098 Bisqwit is life.
@jeffreyhymas6803
@jeffreyhymas6803 Жыл бұрын
I'm super late to the party but screw it, this was hands down the best C++ video I have ever seen, full stop. It might be the best tutorial I've ever seen. Not only are you engaging and interesting to listen to, but you make the concepts really easy to understand without oversimplifying or dropping necessary information. This should be mandatory viewing for anyone learning C++. How none of this was ever covered in my entire 4 year Computer Engineering program is beyond me.
@mirzakadic9174
@mirzakadic9174 Жыл бұрын
agreed. Only thing a bit bothering is the background music. If it was at least a bit lower volume.
@cmugsy3597
@cmugsy3597 Жыл бұрын
Agreed. I am in the early courses of computer science right now and this has been more helpful than my textbooks/lectures. I look forward to going through the rest of the series
@samdavepollard
@samdavepollard Жыл бұрын
Agreed. I've tried various books and video courses, and every time I end up thinking "Cherno's videos are better"
@YmanYoutube
@YmanYoutube Жыл бұрын
would you recommend getting a CS or a CE degree?
@jeffreyhymas6803
@jeffreyhymas6803 Жыл бұрын
@@YmanKZbin It mostly depends on what you want to do. Both will cover the basics; fundamental coding practices, algorithms and data structures, but they focus on different areas. CS is more about higher level concepts and pure software design including web development, machine learning/AI, and data science. CE is more low level, most CE degrees include electrical engineering elements and they focus a lot on computer architecture, digital design, and imbedded systems, a lot of C and C++. So if really depends on what you might want to do with your career. Bare in mind of course that's based on my experience, you should always look at what the programs at your school looks like.
@팍준하
@팍준하 4 жыл бұрын
summary: Compilation is the process where we convert our plain text of the cpp files into a machine code that is readable by the CPU. It occurs in several steps. The first step is 'preprocessing', which evaluates the proprocess statements. This is followed up py tokenizing, parsing and so on, which will create an abstract data tree(?). In cpp, files have no meaning, and this is to be compared with Javascript. The cpp compiler by default treats .h, .cpp files as the way they are, but we can specifically direct the compiler to treat any random file like any other random file. Therefore, we can just make a .cherno file, and make the compiler treat it like a cpp file. //To be honest, I didn't really get what he meant here. Going over the preprocessing statements, the most common statements are #include, #define, #prgma(?) and so on. #include basically results in the computer to find the file with that name and copy and paste its content into the current file. #define is followed by 2 arguments, and will replace all of the first argument found in the text into the second argument. To see what is going on during the preprocessing stage, we can change the property of our exe file so that it preprocesses to a file, and open the .i file with an text editor. After the preprocessing stage and a series of subsequent stages(cherno didn't cover obout these stages in these video), the compiler results in an obj file. Opening this in an text editor will show hexadecimal looking numbers, which we cannot understand. So we can manipulate the property of the project, click c/c++ --> output files --> assembly output, and change the option from no listing to assembly only listing. Compiling the file after this settings will result in a .asm file being created ind the debug folder, together with the other obj files. This is the readable format of the machine code, and Cherno uses this file to demonstrate how optimization option runs our code faster by reducing redundancy. So in our properties, we can enable optimation, which also requires to change the code generation-> basic runtime check should also be set to default. Cherno makes a 'log' function that returns the message that it receives, and *for no reason*, puts it in the middle of the 'multiply' function he created. Without the optimization, we can see in the .asm file that the compiler calls for the 'log'function for no reason, which slows down the computer by adding additional line to the code. With the optimization turned on and compiling the file again, the whole line that calls for the redundant 'log' line is just gone, because the compiler decides to delete the whole section since it understands that it is unnecessary.
@minhthuan2132
@minhthuan2132 4 жыл бұрын
well done
@rudolphstamaria8782
@rudolphstamaria8782 4 жыл бұрын
Thanks, man
@xrafter
@xrafter 4 жыл бұрын
The .cherno thing he meant by it that the compiler will treat your file like any text file so you don't to name it by .cpp extension. Infact you can compiler any text file that have cpp code in it
@SirusStarTV
@SirusStarTV 4 жыл бұрын
Abstract Syntax Tree and Java not java script
@himanshupoddar1395
@himanshupoddar1395 3 жыл бұрын
if abject file does not contain the call to message/ print message then how will our application print the message at the end of the day, that isn't optimization its data loss
@sweatygenius
@sweatygenius 7 жыл бұрын
All my .cpp files are gonna be .cherno files now
@michaelpacheco7421
@michaelpacheco7421 6 жыл бұрын
LMAO
@codehorse8843
@codehorse8843 5 жыл бұрын
@@michaelpacheco7421 I find it so funny that any normal person would be like "WTF even are you talking about?". >D
@muthukumarp9934
@muthukumarp9934 4 жыл бұрын
That chernobryl ransomware
@xrafter
@xrafter 4 жыл бұрын
@@muthukumarp9934 Cherno is not q ransomware
@awardmathpu4231
@awardmathpu4231 3 жыл бұрын
@@codehorse8843 are you supposing we are not normal?
@shunshirou
@shunshirou 5 жыл бұрын
Best C++ series ever. I'm actuallty a very experienced C programmer, and have started diving into C++ recently. These videos are just really good. Thanks for the good work!
@MsJavaWolf
@MsJavaWolf 5 жыл бұрын
I have been programming for a while too, I think these videos are great. I can't judge if they are perfect for beginners, but I pick up a lot of helpful stuff.
@sahilbaori9052
@sahilbaori9052 3 жыл бұрын
shouldn't be taking effort cause syntax is 80% the same right?
@JB-kq5ky
@JB-kq5ky 2 жыл бұрын
Awhile ago you could probably get away with saying C++ is just C with OOP. These days that just isn't true. C++ is much more than that.
@haru02w89
@haru02w89 Жыл бұрын
​@@sahilbaori9052actually, c++ has diverged a lot far from it since its start
@rabiaedaylmaz1198
@rabiaedaylmaz1198 2 ай бұрын
Great videos, thank you so much. I have been watching your videos. For brief notes, i asked gpt "How the C++ Compiler Works": The C++ compiler transforms C++ source code into executable machine code through several stages. Understanding these stages can help you write more efficient and error-free code. Here’s an overview of how the C++ compiler works: ### 1. **Preprocessing** - **Input:** Source code files (`.cpp`, `.h`). - **Output:** Preprocessed source code. - **Actions:** - **Macro Expansion:** Expands all macros defined with `#define`. - **File Inclusion:** Inserts the content of the included header files (`#include` directives). - **Conditional Compilation:** Evaluates `#if`, `#ifdef`, `#ifndef`, and similar directives to include or exclude parts of the code. - **Removing Comments:** Strips out comments from the source code. ### 2. **Compilation** - **Input:** Preprocessed source code. - **Output:** Assembly code. - **Actions:** - **Syntax Analysis (Parsing):** Checks the code for syntactical correctness. Converts the code into an Abstract Syntax Tree (AST). - **Semantic Analysis:** Ensures the code adheres to the language rules and checks for semantic errors (e.g., type checking, variable declarations). - **Intermediate Code Generation:** Converts the AST into an intermediate representation (IR). - **Optimization:** Performs various optimizations on the IR to improve performance and reduce the code size. - **Code Generation:** Translates the optimized IR into assembly code for the target architecture. ### 3. **Assembly** - **Input:** Assembly code. - **Output:** Object code (machine code). - **Actions:** - Converts the human-readable assembly code into machine code instructions specific to the target CPU architecture. - Produces an object file (`.o` or `.obj`), which contains the machine code and additional information like symbol tables and relocation information. ### 4. **Linking** - **Input:** Object code files and libraries. - **Output:** Executable file. - **Actions:** - **Symbol Resolution:** Resolves references to functions and variables across different object files. - **Relocation:** Adjusts addresses within the code and data sections. - **Library Linking:** Includes necessary code from static libraries (`.lib` or `.a`) or dynamic/shared libraries (`.dll` or `.so`). - Produces the final executable file that can be run on the target system. ### 5. **Loading (Execution Time)** - **Input:** Executable file. - **Output:** Running process. - **Actions:** - The operating system loads the executable into memory. - Allocates memory for the program’s stack, heap, and data segments. - Resolves dynamic library references (if any). - Transfers control to the program’s entry point (usually the `main` function). ### Additional Details - **Error Handling:** At each stage, the compiler checks for errors and warnings, providing feedback to the programmer. - **Debugging Information:** The compiler can include debugging information in the object files to help with debugging. - **Optimization Levels:** Compilers often offer various optimization levels (e.g., `-O1`, `-O2`, `-O3` in GCC) to control the trade-off between compilation time and the performance of the generated code. ### Example of a Compilation Process For a file `main.cpp`, the typical compilation process using a command-line tool like `g++` might look like this: ```sh g++ -o main main.cpp ``` This command tells the `g++` compiler to preprocess, compile, assemble, and link `main.cpp` into an executable named `main`. By breaking down the compilation process into these stages, you can better understand how your C++ code is transformed into a running program and optimize or debug each part of the process effectively.
@rohitsanjay1
@rohitsanjay1 4 жыл бұрын
The background music is perfect. It keeps the viewer focused. Great job dude
@geronimo9824
@geronimo9824 4 жыл бұрын
Fuck men, I've been watching him for over a year now, and never noticed it, then came here to read comments, and now i can't unhear it anymore, can't focus on words coming from his mouth. Burn in hell!!!!!!!!!
@rohitsanjay1
@rohitsanjay1 4 жыл бұрын
@@geronimo9824 lol
@coolfred9083
@coolfred9083 4 жыл бұрын
​@@geronimo9824 Um... hahaha
@rod-abreu
@rod-abreu 4 жыл бұрын
@@geronimo9824 It's probably because Rohit must be close enough to music instruments so that his sensitivity already gets more about sounds faster than you do. I'm a musician myself and one of the first stuff I noticed was the great tracks Cherno uses as bg sound.
@SoulBruteflow
@SoulBruteflow 7 жыл бұрын
Love the series. Please keep it up. There is a lot of unfinished cpp series on youtube. It would be a shame if this one will fall aswell.
@assainjon
@assainjon 7 жыл бұрын
Check out Derek Banas
@bool2max
@bool2max 7 жыл бұрын
Don't.
@countolaf6078
@countolaf6078 7 жыл бұрын
Let's support him on Patreon so that he'll continue doing this awesome work.
@lusaca87
@lusaca87 7 жыл бұрын
He said in a vlog so he will keep it up (if i dont missunderstand his words :D) but it can take up for years! to finish all 3 series.
@macroxela
@macroxela 4 жыл бұрын
Good to see that 3 years later the series is still going strong
@Chiramisudo
@Chiramisudo 4 жыл бұрын
Playing around like this is the absolute best way to learn the internals of programming. Not merely watching videos, but actually DOING the work. Now go play!!! 😁
@dayday8421
@dayday8421 5 жыл бұрын
I'm on my 3rd year of a computer science degree and I feel like I learned more from your videos than I did in my first 2 years. Absolutely brilliant content, pacing and delivery. I started with Java and touched on other high level languages like C#. I was really weary about moving to C++ as most videos go from the absolute basics of coding so it's difficult to find what you need. This series on the other hand delivered EXACTLY what I was after. So glad I found you. Thank you!
@susmitislam1910
@susmitislam1910 3 жыл бұрын
Okay man seriously your C++ tutorials are the best programming tutorials in any language I've ever coded in. It feels so good, even if it's only scratching the surface, getting a good understanding of the underlying nuts and bolts of every line of code. Thank you very much!
@rapteakewl
@rapteakewl 7 жыл бұрын
Dude, this series is amazing, seriously! I come with a bit of background of assembly, c++, c# and python and you explain things so well! Thank you very much for these videos :)
@AdriansNetlis
@AdriansNetlis 5 жыл бұрын
I found your channel and I am thrilled. I wish I could freeze time for anything but me, my computer, my internet connection and KZbin servers in order to just get all this information in no time.
@alessandroburza4568
@alessandroburza4568 2 ай бұрын
10 years into fullstack web app, mobile and software programming, I wanted to learn C++ so I can create faster backends and create desktop app/games. This is the only tutorial that explained perfectly how C++ works
@svenbtb
@svenbtb Жыл бұрын
Super cool to see how the C++ code gets turned into Assembly and Machine Code, and also really helpful to have a better understanding of what the compiler is actually doing!
@paulsalinas1524
@paulsalinas1524 4 жыл бұрын
Reading the comments, I am so glad you are one of the first channels I found when I started looking for cpp tutorials...
@ExoContinuum
@ExoContinuum 7 жыл бұрын
Been programming c++ for just under a year now, consistently. It's amazing how I still learn new things everyday, especially from you. Thanks so much, man. I appreciate it so much.
@jawadtahmeed
@jawadtahmeed 8 ай бұрын
Dude, I have gone through so many c++ series and almost all of them are either garbage or redundant. Your series is a pure gem. It will help me to grow my embedded systems skills. Cheers!
@APlethora
@APlethora 7 жыл бұрын
This is a very well done explication of the c++ compiler.
@annabelletrinh936
@annabelletrinh936 3 жыл бұрын
For Mac OS users using XCode: - Getting the Preprocessor file : Editor > Assistant > Click on Counterparts > Select Preprocessor - Getting the Assembly file : Editor > Assistant > Click on Counterparts > Select Assembly
@WayneRiesterer
@WayneRiesterer 5 жыл бұрын
Usually when I work through video courses, I'll watch them at 1.5-2 x speed. When I see the total number of hours, I also factor the speed shift in and determine how much value a course has. Anywayz...none of that applies here :D I've worked through a number of C++ courses, but I can't resist starting from scratch with this series as I've already come across more than I had previously known. While most kids got a teddy-bear as their first gift, I'm sure you were given a laptop and a copy of Programming Principles and Practice Using C++ by Bjarne Stroustrup. No wonder EA are cranking out some amazing titles. I'm sure I'm not alone in saying that I really appreciate your effort and I'll be sure to contribute when I can. Cheers!
@kmint1331
@kmint1331 Жыл бұрын
I've started watching your videos 3 years ago to learn C++ and just came back for basic knowledge and how C++ works in general under the hood and WOW, never expected to gain so much information again from these what I called "boring" videos.
@HiAdrian
@HiAdrian 6 жыл бұрын
Fast and with some background music, I think it's perfect to hold one's attention. I will recommend this series!
@ItsRichardShank
@ItsRichardShank 9 ай бұрын
This guy explain this shit much better than most of the professors on unis.
@esben181
@esben181 6 жыл бұрын
"so instead of fixing this like a normal person" cracked me up for some reason
@nerdy-wizard
@nerdy-wizard 4 жыл бұрын
I'm only a few videos in and it's such a breath of fresh air to find someone who knows their topic well enough to explain it in such easy terms. Preprocessing itself has been so badly explained to me by teachers at all levels and udemy 'instructors' and then here you go and show me that it's perhaps one of the simplest things you can imagine. Thank you. Thank you for the effort you've made in creating this.
@frixaco
@frixaco 4 жыл бұрын
After watching this video I started to LOVE C++, Visual Studio and The Cherno's Channel!!!
@happyhappy-dg2fy
@happyhappy-dg2fy 4 жыл бұрын
VS takes too much disk space.
@Kanak_Bodkhe
@Kanak_Bodkhe Жыл бұрын
lmaooo 7:33 who would've thought that these things can be that much simple like i was amazed that you can just create any header file and write #include and it will just paste that thing lmao man, you are great at explaining things, i love you
@TheSim00n
@TheSim00n 7 жыл бұрын
Wow, this series is fantastic. I'm making my way to patreon right now, because I don't want to this to stop.
@dorothyglade9087
@dorothyglade9087 5 жыл бұрын
Dude. I'm taking a C++ class at WGU and I can't even begin to explain to you how helpful this series is. You're a boss.
@davidblane8318
@davidblane8318 5 жыл бұрын
Quite simply the best learning resource I’ve found online for any topic. Thank you keep up the good work
@alifarzamnia5185
@alifarzamnia5185 Жыл бұрын
Challenge: how can i say i love your series without saying that i love your series. That's fantastic
@qwertyuuytrewq825
@qwertyuuytrewq825 5 жыл бұрын
C'mon! I believed that compiler does some magic. Feeling the same as when I realized that Santa is fake Give me my ignorance back! : ))
@tissuepaper9962
@tissuepaper9962 2 жыл бұрын
Bro that demonstration with the header file is really good. I never realized that #include was a literal copy and paste.
@Jardynq
@Jardynq 7 жыл бұрын
"I've actually made another video specifically covering linking" "Coming Soon..." God dammit. I hate being early.
@stevenflogio9892
@stevenflogio9892 4 жыл бұрын
*laughs in 2020* >:D
@theblinkingbrownie4654
@theblinkingbrownie4654 4 жыл бұрын
imagine being early. Can't relate.
@Grizzlywer
@Grizzlywer 3 жыл бұрын
@@stevenflogio9892 *laughs in 2021* KEKW
@soulninjadev
@soulninjadev 3 жыл бұрын
lmao you were very early
@ananttiwari1337
@ananttiwari1337 3 жыл бұрын
@@stevenflogio9892 *laughs in 2021*
@anupamdubey5736
@anupamdubey5736 2 жыл бұрын
It must have took quite some effort for making such content for free. Evergreen content. Till C++ stays, this content remains relevant. Hats off Cherno! Thanks for these gem videos!
@sickysore
@sickysore 7 жыл бұрын
Once again, thank you for these videos, Cherno, but the music is very distracting. It might not be for you, but for a beginner trying to process all this new information while following the video, it certainly is. I really do appreciate this, don't get me wrong.
@WaitButHow
@WaitButHow 6 жыл бұрын
This video has music? I just watched the whole thing and it went entirely unnoticed by me.
@AgentM124
@AgentM124 7 жыл бұрын
idk why people complaining for high quality free content. i get some people are really advanced, but I think even though I do speak c++ to put it that way, it's a nice refresher as well as it is a complete series from begin to end. if he does finish it.
@philipkatis
@philipkatis 7 жыл бұрын
Absolutely loving the series so far. Great job! Will you ever cover how to compile into DLL files and then use them as references in different projects?
@jamesmnguyen
@jamesmnguyen 7 жыл бұрын
DLLs are just like regular static libraries except you need the DLL next to the exe and you must export your functions to the DLL. Im sure Cherno will go in depth of this.
@Daniel-bw1fq
@Daniel-bw1fq 2 ай бұрын
I’ve written multiple compilers before and while I didn’t learn anything (wasn’t expecting to) this is the best explanation I have found and I have passed this onto lowerclassmen
@glitchedpolygons
@glitchedpolygons 5 жыл бұрын
3:51 "Compile me like one of your .cpp files :3"
@hamedhosseini2155
@hamedhosseini2155 3 жыл бұрын
I didn't find any person like you to explain in the simplest possible way. I saw an everyday video about programming for 10 years but I never find a person to explain this detail. It's absolutely easy for me because I had experience in programming but if someone new to programming with your video learns readily.
@Yetipfote
@Yetipfote 3 жыл бұрын
"C++ is text. That's it. It's just a text file." me: *having existential crysis* EDIT: this was so pleasant to listen to like a cooking instruction. You really got it down man!
@steamerSama
@steamerSama 5 ай бұрын
This is perfect. I am a software developer but do not have a formal cs degree, and this series has laid a solid foundation on stuff I had no clue how worked. Thanks
@kudoamv
@kudoamv 7 жыл бұрын
I did not wanted this to end for next 2 to 3 hrs ?? really !!
@roja
@roja 2 жыл бұрын
Commenting for your exposure. The best channel on KZbin for C++ !!!
@UsmanShery
@UsmanShery 7 жыл бұрын
you should make compiler construction series as well. there isn't any good one out there.
@barbarairena6714
@barbarairena6714 6 жыл бұрын
Usman Shery can you recommend one??
@trido3815
@trido3815 3 жыл бұрын
Thanks for the great instruction. It is so much easier to understand by watching you going through the demonstration. I think at 11:43 it is the hexadecimal (0-F) representation. The assembly code is useful to debug some weird and tough bug. I also watched your video about the linking. It was very helpful too.
@kiranmathews1953
@kiranmathews1953 6 жыл бұрын
Well in 11:28, the code is in its hexadecimal format not binary. Overall, good tutorial for C++ learners
@emmanuelkatipunan1478
@emmanuelkatipunan1478 5 жыл бұрын
i agree
@linocontreras8406
@linocontreras8406 5 жыл бұрын
The file is a binary file. It's just shown with hexadecimal characters by the text editor.
@Gilpow
@Gilpow 5 жыл бұрын
@@linocontreras8406 ^^^^^ thisssss
@denhoward6438
@denhoward6438 2 жыл бұрын
Very in-depth tutorial and very pleasant background music
@_pi
@_pi 7 жыл бұрын
You could do more than one video a week, because at this rate I will have children before finishing the series... xd
@resantic2256
@resantic2256 7 жыл бұрын
pi He has a full time job and does this in his free time. He could skip the basic useless stuff though, but it's his series so he decides
@siva6137
@siva6137 7 жыл бұрын
Support him on Patreon.
@bfkmnemonic
@bfkmnemonic 2 жыл бұрын
I just started watching your series. I just want to say that I LOVE how you go into details about everything without making it boring.
@perschistence2651
@perschistence2651 3 жыл бұрын
I think I understood everything but the video was a bit too fast for my taste. I even thought I would have the video on 1.25x speed...^^
@Putper
@Putper 2 жыл бұрын
thanks for using dark theme so I can follow these videos at 2AM without burning my eyes to a crisp
@ohaRega
@ohaRega 6 жыл бұрын
"I hope you learned something new". You bet.
@shadeofficial524
@shadeofficial524 4 жыл бұрын
haha
@sangramjitchakraborty7845
@sangramjitchakraborty7845 5 жыл бұрын
I see a lot of comments confused about why a binary file is being displayed as hexadecimal. You guys are confusing the data with the representation. Take the number 12 in decimal. 12 can be represented as 1100 in binary, and 'c' in hexadecimal. But the underlying data will still represent 12 counts from 0, however you choose to represent it. It's the same thing with the binary file. The underlying data is the same no matter how you choose to represent it. The file is called binary because it's not a text file, and the data does not have any sensible unicode or ascii representation, and because the underlying data is stored as binary on the disk. Text editors choose to show us the hexadecimal representation of the data because it's easier to read for a human than a series of 1s and 0s. It's also a lot compressed. 4 binary bits can be represented by one hexadecimal symbol.
@leonperianu7684
@leonperianu7684 5 жыл бұрын
I laughed my ass of when i seen that with the header files. Just copy pasta at it's finest.
@frogge6443
@frogge6443 Жыл бұрын
I've been programming in C++ for 3432.76 years, and I learned something new here. Thanks!
@Sylfa
@Sylfa 7 жыл бұрын
Slight constructive feedback. Blink more. You seem to have done jump cuts to make it flow better (which is great) but you also appear to not blink at all during the intro thanks to it. It's noticeable which makes it distracting (and sorta creepy). So yeah, just try to blink normally even though its weird with lights/camera and stuff.
@Sylfa
@Sylfa 7 жыл бұрын
Yeah, people tend to notice if someone talking to them is blinking too often or not often enough. Since you have bright lights in your eyes in a situation like this you tend to blink too often so you have to consciously avoid doing that, aaaand then you might go the opposite direction. It's not a big deal, but worth thinking of when recording videos.
@TheCherno
@TheCherno 7 жыл бұрын
Haha okay, I'll try. Thanks for the feedback. :)
@resantic2256
@resantic2256 7 жыл бұрын
Didn't even notice it at first, now I have to watch a staring zombie Cherno for 18 minutes, thanks xD
@systematicloop3215
@systematicloop3215 7 жыл бұрын
Interesting, but personally I don't care much about that. Though now it would be awkward if he started to blink more often now that I know that. See what you have done to my mind?
@DylanCurzon
@DylanCurzon 7 жыл бұрын
I didn't even notice. At the start of each jump cut it looks as if he just blinked anyway.
@MichaelLatham95
@MichaelLatham95 3 жыл бұрын
Whoever doesn't like your videos, need to get a grip. You killin the game, The Cherno! Very articulate and concise explanations and code examples for anyone who isn't familiar with how it all works. I am 24 years in the game and I am hard to impress. You did that! Props!
@abdosoliman
@abdosoliman 4 жыл бұрын
11:26 this is hex decimal :D
@xrafter
@xrafter 4 жыл бұрын
Are you challenge me?
@piyushkumar-wg8cv
@piyushkumar-wg8cv 4 жыл бұрын
THE WAY YOU PROVE THINGS (LIKE HEADER FILES ARE CPIED THERE) IS AMAZING
@vixinhaler
@vixinhaler 6 жыл бұрын
Is your last name...Bill?
@johnjonjhonjonathanjohnson3559
@johnjonjhonjonathanjohnson3559 5 жыл бұрын
no his last name is chernoproject
@abdullaalblooshi2406
@abdullaalblooshi2406 4 жыл бұрын
Yan Chernikov
@monkemode8128
@monkemode8128 2 жыл бұрын
Wow, your explanation of header files was incredibly good and simple. As a beginner I kept seeing how header files were used, but not how they worked. Good job!
@tmirror7053
@tmirror7053 5 жыл бұрын
I've just started with operating system development at my university (TU Dortmund - Germany) and missed out this whole compilation part (preprocessing, compilation, assembling, linking). This video helped me out a lot. Thanks for that - you've earned yourself a new subscriber! Edit: The quality of your education video is also top notch! Simple, in depth, no annoying background music, good examples. Keep it up!
@marcocipolato3032
@marcocipolato3032 5 жыл бұрын
Well you can get that the quality of the video is high from the astonishing rate of people truly satisfied in the comments below.. You are doing an amazing job here explaining also the background, it makes much more sense when things have a deeper reason. Thank you very much man!
@Gruby7C1h
@Gruby7C1h 3 жыл бұрын
I remember seeing this series few years ago and thinking that the channel deserves to be way more popular... And now in 2020: 335K subs, glad you've made it! :)
@pradeeplanka6976
@pradeeplanka6976 5 жыл бұрын
As C compiler optimizes and compiles code in to an executable. You too have compiled lot of information in to a short and precise video. You cleared lot of myths I had in my mind for this compiling process. Thanks a lot.
@callmejobson
@callmejobson 7 ай бұрын
Another Banger I went to school for this and I have learned more from this then any class.
@thepollardbull
@thepollardbull 3 жыл бұрын
Visual comparison of before and after optimization powerfully illustrates what compilation does. I appreciate this level of detail and approach to explanation.
@bandolero818
@bandolero818 2 жыл бұрын
As a C++ programmer I like to review things watching videos like this. You are very clear explaining. Thanks for your videos!
@chutneystudios
@chutneystudios 3 жыл бұрын
Your understanding of c++ is very clean, and it has motivated me to watch more videos and continue where I left off trying to understand c++
@RenkoGSL
@RenkoGSL 3 жыл бұрын
Dude thank you for teaching, seriously. This exact subject was so uncovered and hand wavy at my University and you ripped into it perfectly.
@MrBLARG85
@MrBLARG85 4 жыл бұрын
Where did you learn terms like, “Constant Folding”? Did you learn it at school? From a book? On the job? I’m curious because I would like to learn more about C++ and compilers.
@imalittlestupid819
@imalittlestupid819 6 жыл бұрын
This is fantastic. I have been programming for a couple months now and this cleared the water for so many things I was having trouble understanding. Thank you.
@semihmasat
@semihmasat 4 ай бұрын
wait. this is an amazing tutorial. like extremely good.
@Suebpong2536
@Suebpong2536 4 жыл бұрын
Thank you very much Mr.Cherno I'm come from THAILAND. So obviously i'm not professional in english. But i can studying C++ from you. I have basic C++ a little, you can repeat me to know C++. apologize for my english if i do you confused. All your VIDEO does leaning C++ and English together. `:)
@andriesvanwyk3226
@andriesvanwyk3226 3 жыл бұрын
Cherno, you are a brilliant teacher! Thank you so much. You explain things so clearly! Please keep up this great work. I only started learning C++ today. Have been a web dev for 14 years, but want to dive into game programming. Your tuts are my go-to :)
@victoriavictoria7825
@victoriavictoria7825 5 жыл бұрын
You explained in one video what my professor failed to explain in two weeks. Much appreciated. 👍🏻
@chilinouillesdepommesdeter819
@chilinouillesdepommesdeter819 6 жыл бұрын
I just can't help watching your videos,they're addictive.
@Shvmadogg
@Shvmadogg 3 жыл бұрын
I think that your vids are the best on KZbin by far for almost any programming language.
@PrevioTuc
@PrevioTuc 2 жыл бұрын
I go back to that video every now and then.
@neelimgoswami6336
@neelimgoswami6336 6 жыл бұрын
good teaching . the first things are generally ignored or not known by other people
@Gruggo
@Gruggo 5 жыл бұрын
Fantastically explained. Been programming for a few years now, but never really jumped into CPP. Really good explanation of some of the things that go on when i hit that 'Build' button.
@AlessandroBottoni
@AlessandroBottoni 6 жыл бұрын
By far the best video I have ever seen on this topic. Clear, concise, on-topic, with a lot of enlightening examples and with some very interesting background information. Congratulation!
@Djzaamir
@Djzaamir 7 жыл бұрын
Wow i have been working with c++ and programming languages in general for a couple years now , but gotta say these tutorials are really good easy to understand , keep the good work Mate
@magellan124
@magellan124 2 жыл бұрын
I came to Cherno's channel to learn c++ and im accidentally learning computer science as well. Literally the best explainer series ever
@MB-xi1lm
@MB-xi1lm 5 жыл бұрын
I came here thinking it'll be a beginner course, but you have a talent to mix beginner and advenced notions, i think your videos are perfect for anyone who tries to learn or perfect their Cpp skills, truly anyone can learn something here, that's a video quality i've not seen very often, best cpp course out here imo (sry for my broken english, not native speaker and my last english class is getting a bit old ^^)
@themuchcoolman
@themuchcoolman 7 жыл бұрын
The amount of amazing information in this video just blew my mind. Thank You!
@jhoc9157
@jhoc9157 4 жыл бұрын
Had vague concept about include.. and got 100% clear concept in several minutes..
@crysist13
@crysist13 7 жыл бұрын
This is some high tier tutorial series. Please keep it up.
@JazzInATinCan
@JazzInATinCan 11 ай бұрын
This is incredibly useful. Many thanks and hat's off to your teaching skills, very inspiring.
@mranony9288
@mranony9288 11 ай бұрын
Thank you for making the best C++ tutorial!
@rtdietrich
@rtdietrich 2 жыл бұрын
This channel is a paradise for those who want to learn C++ ===> Thank you!!!!
@roberthoople
@roberthoople 3 жыл бұрын
this->Video = "One of The Most Revealing explanations of what's actually going on with the compiler that I didn't even know I needed. Mind blown!";
@fruitspunch
@fruitspunch 3 жыл бұрын
Darn, I have to say, this tut is really impressive. I like your information density and how you present said information. I just started the tut and I'm really looking forward to the rest of the videos in this playlist :D Thanks and have a good one
@shah.kairav
@shah.kairav 4 жыл бұрын
I would love to see Yan interview for some SDE job. The interviewer will be blown away by his clear explanations, and of course, his immense knowledge of the subject. Thanks man for sharing!
@peterzeng1243
@peterzeng1243 5 жыл бұрын
your teaching is much better than Microsoft Engineer on EDX! Amazing!
How the C++ Linker Works
15:52
The Cherno
Рет қаралды 628 М.
How C++ Works
20:21
The Cherno
Рет қаралды 1,1 МЛН
这三姐弟太会藏了!#小丑#天使#路飞#家庭#搞笑
00:24
家庭搞笑日记
Рет қаралды 126 МЛН
GIANT Gummy Worm Pt.6 #shorts
00:46
Mr DegrEE
Рет қаралды 47 МЛН
Brawl Stars Edit😈📕
00:15
Kan Andrey
Рет қаралды 49 МЛН
What is the Smallest Possible .EXE?
17:04
Inkbox
Рет қаралды 393 М.
2 Years Of Learning C | Prime Reacts
22:24
ThePrimeTime
Рет қаралды 286 М.
WHY did this C++ code FAIL?
38:10
The Cherno
Рет қаралды 258 М.
Compilers, How They Work, And Writing Them From Scratch
23:53
Adam McDaniel
Рет қаралды 182 М.
Demystifying the C++ Compiler!
12:52
Low Level Game Dev
Рет қаралды 15 М.
Reacting to Controversial Opinions of Software Engineers
9:18
Fireship
Рет қаралды 2,1 МЛН
Собеседование Junior C++
45:32
Ambushed Raccoon
Рет қаралды 114 М.
Let's Create a Compiler (Pt.1)
1:11:03
Pixeled
Рет қаралды 518 М.
C++ vs Rust: which is faster?
21:15
fasterthanlime
Рет қаралды 395 М.
C++ Header Files
15:10
The Cherno
Рет қаралды 723 М.
这三姐弟太会藏了!#小丑#天使#路飞#家庭#搞笑
00:24
家庭搞笑日记
Рет қаралды 126 МЛН