why do header files even exist?

Поделиться
HTML-код
  • Опубликовано: 17 янв 2025

Комментарии • 583

  • @LowLevelTV
    @LowLevelTV  8 месяцев назад +14

    wanna get good at programming? check out lowlevel.academy and use code THREADS20 for 20% off lifetime access. or dont. im not a cop

  • @ahmehhhd
    @ahmehhhd Год назад +2689

    idk man

  • @DanielTredewicz
    @DanielTredewicz Год назад +378

    You can also use a header files to declare structs w/o exposing their fields (you define them in the source file). That way you ensure that users of your library operate on structs only through pointers to them and API you provided, so you achieve encapsulation.

    • @foxwhite25
      @foxwhite25 Год назад +26

      public in any language: hello

    • @EdKolis
      @EdKolis Год назад +11

      Sounds like security by obscurity. Someone will eventually guess the names of your "private" fields!

    • @MD-vs9ff
      @MD-vs9ff Год назад +72

      ​@EdKolis it's not security, it's what the developer is able to use in source code. Of course there's ways to get around it, but the point is just to make it harder to do something you don't want them doing.

    • @ruanpingshan
      @ruanpingshan Год назад

      Is that what they call the Pimpl pattern?

    • @TheRPGminer
      @TheRPGminer Год назад +3

      Won't it cause allocation problems? When sizeof(struct) lies to you about real size? Or am I wrong somewhere?

  • @3snoW_
    @3snoW_ Год назад +222

    Something you didn't mention is that header files are included in the precompiler phase. The line _#include__ "myheader.h"_ is basically an instruction that tells the precompiler to replace this line with the contents of _myheader.h_ . This is why header inclusion is a # command, and also why headers start with a #ifndef command, to make sure that the same header isn't included more than once by the precompiler. It also means that you don't have to limit yourself to declare functions on the header file, you can technically write any code inside a header file and it will compile just fine, though it can lead to problems if multiple source files use the same header (multiple definition error).

    • @lilyyy411
      @lilyyy411 Год назад +5

      inline my beloved

    • @davidfrischknecht8261
      @davidfrischknecht8261 Год назад +13

      Headers could also start with a "#pragma once" command.

    • @dimitar.bogdanov
      @dimitar.bogdanov Год назад +3

      > though it can lead to problems if multiple source files use the same header (multiple definition error).
      But why? Doesn't #ifndef/#pragma once fix this?

    • @Scotty-vs4lf
      @Scotty-vs4lf Год назад +7

      @@dimitar.bogdanov the ifndef/pragma prevents you from getting multiple definitions in one translation unit, but if you link with another compiled source file that included the header then you would basically be including that code twice, because each source file has its own copy of the header

    • @sly-shot
      @sly-shot Год назад +1

      @@davidfrischknecht8261 #pragma once is nonstandard.

  • @HairyPixels
    @HairyPixels Год назад +1152

    Header files are only there because it makes it easier for the parser. They are technically not needed but this is the legacy of C and other languages so it's stuck around. I don't mind them personally but it's hard to justify their existence because removing them is just an technical problem which can be solved with a little effort.

    • @kerimgueney
      @kerimgueney Год назад +106

      I was just thinking the same. If one is naughty, one could completely ignore header files and just use implicit declarations all around.
      C could use an actual module system like Rust but I suspect that's not going to happen any time soon. I heard C++20 introduced a module system, but then you're programming in C++ .... or some subset of it.

    • @giantskeleton420
      @giantskeleton420 Год назад +8

      i dont get it, how would certain functions run then?

    • @kerimgueney
      @kerimgueney Год назад +83

      @@giantskeleton420 the compiler would just create an implicit declaration for any external function, which will always look like int functionName() (always an int and empty parameters). The linker will then just try to match the function name to what it can find in the libraries. If you pass the correct arguments to the functions and handle its return value correctly, everything should work just fine.

    • @torarinvik4920
      @torarinvik4920 Год назад +7

      @@kerimgueney Wow, did not know that. Thanks for info!

    • @giantskeleton420
      @giantskeleton420 Год назад +9

      ​@@kerimgueneyso u could just include another .c file with the definitions and wouldnt need a header file?

  • @JkaBG
    @JkaBG Год назад +517

    Dealing with header files in c/c++ feels like doing the job of the compiler. I understand the need of a header file when linking with dynamic/static library. BUT in 99% of header files I wrote I also wrote the source file.

    • @wiktorzdrojewski890
      @wiktorzdrojewski890 Год назад +28

      Having implentations in headers leads to longer compile times, separate file.cpp can be compiled to object files indelendent of other code

    • @rursus8354
      @rursus8354 Год назад +29

      The header files will be useful if you get a new task that takes say 6 months and then need to return to the task, and also if you rise in the career and someone else needs to understand what you coded. Just regard them as your own well structured notes for yourself (and others).

    • @DoubleM55
      @DoubleM55 Год назад +14

      Dealing with header files is one of the reasons why I decided to go with Java development career instead of C/C++.

    • @MechMK1
      @MechMK1 Год назад +37

      @@rursus8354Yes, that is what comments are for. In the best case, the header just says what the source file says. In the worst case, the header is a complex maze of ifdefs that are impossible to navigate.

    • @MI08SK
      @MI08SK Год назад +10

      When C and C++ were developed there wasn't such concept as module

  • @drditup
    @drditup 10 месяцев назад +18

    6 years after completing classes, i learned why and "" are used in the includes.

    • @lilyscarlet2584
      @lilyscarlet2584 3 месяца назад +2

      one uses predefined full path and the other is a relative path.

    • @GearsGod
      @GearsGod Месяц назад +2

      I think i got u beat, i just learned that today....been programming for around 14 years now..........

  • @rafaelkuhn
    @rafaelkuhn Год назад +191

    Be careful with those $(pwd) calls, they undergo bash word expansion and can be broken into two different arguments if your path has a space in it, always quote those things with double quotes ", same if you were to do "$PWD" (just reading the variable PWD instead of running the pwd command in a subshell)

    • @Blue-Maned_Hawk
      @Blue-Maned_Hawk Год назад

      Fuckin' sh, man. How'd it catch on?

    • @4.0.4
      @4.0.4 9 месяцев назад +1

      There are so many things that break if you have a space in the path for this reason!

  • @twenty-fifth420
    @twenty-fifth420 Год назад +49

    I know someone said you are a gem for embedded, but you are also one for game dev and low levelers with hardware restraints. I love it.
    I am just a little to deep, but I saw 'header file' reading the raylib documentation as being modular and interchangable.
    And I would be lying to say I had any clue what a header file or what a C file with a header file really...means.
    This video clears up alot of over complicated imagined semantics. Thanks!

    • @lilyscarlet2584
      @lilyscarlet2584 3 месяца назад

      include just copy pastes it into source files. declarations just tell the compiler that the linker will take care of it later so it can generate a stub for the linker. headers just give one convenient place for these declarations that just get included in each file. that way if you have to update it its in one place and all other files will just include that header

  • @mintoo2cool
    @mintoo2cool 3 месяца назад +1

    can’t think this man enough for his absolutely no BS approach to systems computing/programming. he could have done 2 videos on zig or 3 videos on rust and just touched the surface of those .. for content. but he goes deep into basics of how real world systems works … not BS toy projects. thank you you kind man.

  • @charlesmayberry2825
    @charlesmayberry2825 Год назад +2

    This reminds me of my earliest programming experience where it was still common to do the compile and linking semi manually. It was also common to have an automation, but still when I started, and this was not as long ago as you might think, manually compiling and linking simpler programs was still considered common practice.

  • @abghany4761
    @abghany4761 Год назад +40

    Can you make more videos about the building process?
    I really enjoyed this one

  • @BerayTriangle
    @BerayTriangle Год назад +7

    At first, I didn’t appreciate headers, I considered them cumbersome. I always thought that you’re repeating yourself. Then I started writing a rendering engine, and oh are they a lifesaver. Declaring one header file that’s used across 4 APIs has saved me a lot of time and effort instead of writing one for each.

  • @mihiguy
    @mihiguy Год назад +26

    Technically, in the last step you could just list all your .c files instead of .o files, but it would mean you have to compile both files every time even if only one of them changes.

    • @diegoj4382
      @diegoj4382 9 месяцев назад +1

      It would have to be huuuuge to make a real impact in todays processing speeds

  • @T33K3SS3LCH3N
    @T33K3SS3LCH3N Год назад +2

    Basically the implicit function declaration already knows the arguments and return of the function.
    If compiled to assembly/binary, it can pass its parameters into appropriate registers and read back an expected return from the return register.
    But the binary also needs to know the address of the function, to jump there and continue with the code execution of that function. To find out this address, the files need to be linked.
    If no matching function can be found at this time, the linker can only give up.
    In many modern strongly typed languages and IDEs, we would expect the IDE to already have done that lookup in real time as we type the code, so we may not even be allowed to start compiling.

  • @ex-xg5hh
    @ex-xg5hh Год назад +82

    Instead of "why do header files even exist" you explained how header files work, but the question from the title of the video still stands.
    You may have noticed that header files are almost exclusive to C/C++ languages, other languages somehow don't need them. So why do header files even exist?
    For those wondering, header files exist mostly for historical reasons. Since memory was very limited back when C was developed, compilers couldn't afford to keep track of modules themselves, so it became the job of the programmer. Modern compilers are far less hardware restricted, which allows them to favor developer experience over efficiency.

    • @hiesen-iw2mm
      @hiesen-iw2mm 6 месяцев назад +7

      thank you for explainming

    • @visionshift1
      @visionshift1 2 месяца назад +1

      Wow someone explained it. Thanks!

    • @buak809
      @buak809 2 месяца назад

      how are they different from libraries? For example in Python we have to import/specify libraries we'd like to use too. Header files have additional functions built inside them if I am not wrong?

    • @doc.chocholousek3378
      @doc.chocholousek3378 2 месяца назад

      ​@buak809 , well they most of the time aren't, the main difference is you have to write them yourself instead of the compiler figuring it out of your code

  • @crrodriguez
    @crrodriguez Год назад +3

    For future viewers.. newer compilers will treat 1:39 as an error (as if -Werror=implicit-function-declaration) not as a warning as t is invalid c99..the link step will not ocurr.

  • @markrosenthal9108
    @markrosenthal9108 9 месяцев назад +1

    For data that is not self-describing, you need a way to share the common structure across multiple source code files. It's also helpful for sharing common source processing directives. This concept originated before computers with "boilerplate" text and copy books and the term "copy book" was adopted by Amazing Grace for Cobol.

  • @John-yg1cq
    @John-yg1cq Год назад +2

    Another interesting observation is that a C header file works as an "interface" type.
    Whereas in C++ or Python "base class", a Rust trait, or a C# interface, in C you have .h files.
    It describes any object types (structs with or without typedefs) and the (virtual) procedures that are available in the module.
    An accompanying .c file or Feature Test Macro (for single-implementation header files) can be added to choose the implementation.
    This way, a .h file can define a bunch of functions, but for instance you could implement one .c file per platform. The .h file is the abstract class/interface/traits, the .c file is the derived class/inteface implementation/impl.
    C was data-object oriented driven from the start.

  • @lordlj339
    @lordlj339 3 месяца назад +1

    3:14 (yes pi!) There is 3 layers for compile. Preprocessor, Compiler, and Assembler. First all preprocessor tokens are expanded, then its turned into assembly language, then turned into .o files

  • @Xetarine
    @Xetarine Год назад +3

    Btw, for linker paths in e.g. proprietary programs, patchelf from the NixOS project exists. It lets you change paths to libraries in standard Linux ELF files, which they have to use as that distro doesn't use /usr/lib.

  • @0xmmn
    @0xmmn 9 месяцев назад

    I love your work man, although I know this info already but I'm enjoying watching you explaining it with this much practical details.

  • @CallousCoder
    @CallousCoder Год назад +79

    I’ve never found header files an issue, if anything I find them a blessing. A nice readable prototype of an implementation for a function that I don’t want to know the implementation details from. I hear everybody complain about it and it makes no sense to me as to why. I hate those people who do implementations also in header files.

    • @candrar2866
      @candrar2866 Год назад +8

      Just to add if you don’t mind.
      I remember Bob C. Martin and someone else explains header file being similar to Go/Java interface and it could be made to serve the purpose of hiding private functions.
      Lately though I have doubts about the abstraction layers itself. I encounter most of the times hiding the details behind interfaces makes behaviour of code harder to understand but that’s anecdotal. While at the same time, there is no way to code without abstraction.

    • @CallousCoder
      @CallousCoder Год назад

      @@candrar2866 nice addition!
      Usually I don’t hold uncle Bob in a very high regard but a header can be seen as an interface definition.
      Now that’s the difference between Java and C++ you have all the definition public, private, protected. Which shouldn’t be needed really but back in 1970 when C was created the sole purpose was to develop operating systems. Those systems didn’t have the power to quickly scan binaries to find functions and bind to them. Because reading binaries was so slow. So basically the whole header files started as a helper for underpowered linkers.
      These days we can do that without effort and the idea of a header file is dropped in all modern languages.
      But I do like a header file strictly as an interface like Uncle Bob sees them. You get a binary library and a header file and you know exactly how to call the functions.

    • @mihaicraciun8678
      @mihaicraciun8678 Год назад +1

      I fully agree

    • @imaginerus
      @imaginerus Год назад +8

      You know you can just collapse the function contents in any proper editor to get basically the same information? IIRC it's ctrl-K ctrl-0 in VSCode.

    • @CallousCoder
      @CallousCoder Год назад

      @@imaginerus then you will need to send the code along and compile the whole code. The idea of libraries is that these are already in binary format.

  • @grimvian
    @grimvian 11 месяцев назад +1

    C learner here. Great video. I use #pragma once and intend to have declarations in the header files, but I often struggles in a projects, where I have multiple .c and .h files. I think of two ways to deal with that. Use static more and move some of the declarations to the related .c file.

  • @herberttlbd
    @herberttlbd 11 месяцев назад +11

    "Declaration" and "definition" have very specific meanings in C. You got it right at one point in the video, where you said the declaration is in the header but not the definition, but you kept using the wrong terms throughout the rest of the video. K&R assumed an implicit declaration of unknown functions as returning an int - parameters were not part of the signature - but ANSI made declarations for functions mandatory and added parameters.

  • @hoodie_cat
    @hoodie_cat Год назад +10

    07:12 Doing `$(pwd)` instead of `$PWD` is like doing `cat file | grep pattern` instead of `grep pattern file` 💀

  • @for-lack-of-a-better-name-j
    @for-lack-of-a-better-name-j 6 месяцев назад

    Dude you have the best vids ever. Engaging AND technical.

  • @ArachnidAbby
    @ArachnidAbby Год назад +7

    Isn't it simply because these source files actually don't know about each other? Each unit is compiled separately, only linking at the ends brings those units together.

  • @sb_dunk
    @sb_dunk Год назад +2

    Great video, I've used C a bit, not loads, and you explained so many things that I just kinda accepted without really fully understanding.

  • @rowdyriemer
    @rowdyriemer 8 месяцев назад +1

    It's funny - when I write C++, I really like that C++ has headers. When I write C#, I really like that it doesn't have headers.

  • @ferdynandkiepski5026
    @ferdynandkiepski5026 Год назад +66

    To be honest I really like the video. However the title is clickbait or just plain inaccurate. You explained how they work, but not why they're there. Please rename it to how header files work or something similar. All of what you talked about in the video is solved in modern languages without the use of header files and I feel like this topic could really be made into a much more in-depth video.

    • @simonhrabec9973
      @simonhrabec9973 Год назад +5

      Yes. I watched the whole video waiting fior the "why they exist" and it never came.

    • @omargarcia5085
      @omargarcia5085 Год назад +8

      I think explaining how the compiler isolates compilation units is sufficient. He is explaining "why?" in the context of "why does the compiler need header files?". What you are looking for is "Why was the C and C++ compiler designed with those restrictions?" but that is another topic, and one concerning a more historical perspective. Also, now that you know of these restrictions thanks to him, you can look it up!

    • @ronald3836
      @ronald3836 4 месяца назад +2

      They exist so you don't have to copy all those definitions into every source file and maintain them there.

  • @menaced.
    @menaced. Год назад +17

    My first Cpp project was a game-engine following theCherno’s tutorial to start and I learned how to use header files kinda naturally i never even thought about “why” im doing i just new when to use it

    • @chry003
      @chry003 Год назад +2

      Actually, I started learning c++ the exact same way, about 2 years ago with his sparky series.

    • @chry003
      @chry003 Год назад +1

      Are you still working on that!?

  • @rtiodev
    @rtiodev 10 месяцев назад

    Thank you very much, I literally dealt with tons of compiling issues when programming in go using the FFI and realized that I have never understood it correctly.

  • @UltimatePerfection
    @UltimatePerfection 9 месяцев назад +7

    Headers are basically here to make compiling easier. They're a remnant of the past that stuck around.
    You see, the early C compilers were dumb so if you tried to call a function that was declared later on in the source, they couldn't find it. Sometimes you could solve this by shuffling the functions around, but sometimes it didn't work when the functions depended on each other. (e.g. Function A needs to call function B that in turn either calls Function C or function B again in some recursion scenario).
    To solve that dumbness of the early C compilers, the header files were invented where all the functions would be declared beforehand so the compiler won't think that a function that exist, doesn't.
    Nowadays, the compilers such as GCC and MSVC are actually pretty smart about declarations and can find the function that was declared later on in the code, but the header files stuck around.

  • @thisaintmyrealname1
    @thisaintmyrealname1 7 месяцев назад

    thank you, you not only explained me header files but also the point of using Makefiles towards the end ❤

  • @capability-snob
    @capability-snob Год назад +2

    A great way to show this is with objdump output on .o files, .so files, and executables.
    It might be fun to do one about why the order of linker arguments matter (it's an iterative process!)

  • @colinmaharaj
    @colinmaharaj Год назад +1

    Header fights create a prototype declaration of the interface to a full actual function.
    Only at link time you'd need the code for the function. Ultimately the whole compilation process will be faster, and gives you a full correctness check before linking.

  • @NotXike
    @NotXike Год назад +2

    Why did you have to set an environment variable at 7:37? Was the call to gcc at 7:20 not sufficient to make the association?

    • @kerimgueney
      @kerimgueney Год назад +1

      I don't think the gcc call is enough since lowlevelmath is a shared/dynamic library. During run-time you got to tell the link loader where to find all necessary shared libs. It's kind of like the PATH environment variable for libraries

    • @seabrookmx
      @seabrookmx Год назад +1

      No, because the add function was in a shared object (.so) which is loaded at runtime (dynamic linking). Later in the video he uses .o files (static linking) so it's not necessary. He kinda glossed over that bit.

    • @devluz
      @devluz Год назад

      How dynamic libraries such as *.so / *.dll are found is kind of platform specific. e.g. in windows DLL's are automatically searched in the application folder and a bunch of other folders (super unsafe. google dll injection). On Linux you can embed a "RPATH" into your executable that tells linux where to find the *.so file or you use the environment variable as shown in the video. Note that this gets even more complicated: Android, iOS and co all use "rpath" but in very different ways.

  • @alexaneals8194
    @alexaneals8194 10 месяцев назад

    Very well rounded discussion of header files. Although, you could have added more detail like pragma options and such, I like the way you discussed it since it's easier for beginners to understand without all of the details they can learn later.

  • @dhyey2316
    @dhyey2316 11 месяцев назад +1

    This video was just perfect

  • @nalanpandi5932
    @nalanpandi5932 3 месяца назад

    I like the quote "Everything is open source if you can read assembly" ❤

  • @sasikanthkola9925
    @sasikanthkola9925 7 месяцев назад

    I just started coding, into this video around 2 min, already subscribed...❤❤

  • @theantipope4354
    @theantipope4354 Год назад

    I *really* wish this video (or something equivalent) had existed when I first started learning C in the 80s, because this stuff confused the hell out of me at the time, & was never explained properly in the texts I was learning from.

  • @d3c3pt1_n
    @d3c3pt1_n Год назад

    I have been looking for a good video about this for a long time 😂 thank you!!

  • @dehrk9024
    @dehrk9024 4 месяца назад

    I love his chill vibes

  • @EngineerNick
    @EngineerNick 9 месяцев назад

    I am currently porting some stuff to rust that uses a headerfile that you are supposed to include multiple times, changing other state betweentimes so that you can declare multiple versions of a struct. This is pure insanity and should never have been posible.

  • @norbert.kiszka
    @norbert.kiszka 9 месяцев назад

    9:45 You can compile it in easier method in one go. Instead of creating separate objects, give a gcc all the .c (and .o) files.

  • @the_yugandharr
    @the_yugandharr 3 месяца назад

    thanks that was super informative!

  • @devluz
    @devluz Год назад +2

    3:11 Can you have another look at this? I think this was suppose to say "link -> dll" for windows? As far as I know static libraries (*.a / *.lib) are not linked at all. e.g. on linux the command "ar" will just bundle several *.o files into a single *.a. No linker involved. It would be great to see a deep dive in how static and dynamic libraries work in detail.

  • @xarisfil58
    @xarisfil58 9 месяцев назад

    "Returns a Client Star" instead of saying a pointer to a clients struct. This is how terror of pointers starts

  • @wb7779
    @wb7779 Год назад +3

    Wow, I really like the shirt he's wearing. Assembly language just got more interesting.

  • @coolbrotherf127
    @coolbrotherf127 Год назад

    One thing is that all the code in the header files does get compiled in with the rest of the code which is why really big header files, or source code files with lots of headers take a while to compile since there's a lot of hidden code being analyzed by the compiler.

    • @ronald3836
      @ronald3836 4 месяца назад

      Which is why header files should not contain actual code. (They can contain "static inline" functions in C.)

  • @diegoj4382
    @diegoj4382 9 месяцев назад +2

    I expected to hear more about the Why and less about the How

  • @mytechnotalent
    @mytechnotalent Год назад +1

    great definition, this was the first thing I had to figure out decades ago with circular dependencies

  • @1oglop1
    @1oglop1 Год назад

    Awesome channel, fills in a lot of my knowledge gaps efforlesly!

  • @stef9019
    @stef9019 Год назад

    Awesome explanation! Thanks!

  • @spacelem
    @spacelem 9 месяцев назад +6

    0:10 "£ include"? That's a new one...

  • @larryfulkerson4505
    @larryfulkerson4505 5 месяцев назад +1

    I read somewhere that humans eat more bananas than monkeys and I think it's probably true because I can't remember the last time I ate a monkey.

  • @johnmurray1889
    @johnmurray1889 9 месяцев назад

    Wow, this is such great information that I found a week after I needed to know it.

  • @brandoncazares8452
    @brandoncazares8452 Год назад

    Very helpful video, this helped a lot. Thanks, dude.

  • @ctrlz4439
    @ctrlz4439 Год назад +1

    Please remember 40 years back making it easier for computer to compile was extremely important. I remember old grumpy programmers complaining about inefficiency of high level languages (C)

  • @vmscode
    @vmscode Год назад +10

    A video explaining pointers in the context of structs and vectors being passed to function would be great (What is the best way to access the value of a struct/array and assign it to another struct or variable inside of a function for example...), also one on cmake and best practices when developing with C would be awesome as well, just some suggestions! Thank you for the helpful videos!

  • @JakobWierzbowski
    @JakobWierzbowski Год назад

    Great explanation. Thank you

  • @negrastormentas2865
    @negrastormentas2865 Год назад +1

    So .h files exist to make it possible to hide the definition of the functions in the .c files. Header files allow the programmer to use the function without seeing the internals of the function. The provider of the code can send .o binaries with the functions, instead of the .c file and send a .h as a "manual" on how to use the black boxed function.
    But everything is open source if you read assembly.

    • @mzxrules
      @mzxrules 10 месяцев назад +1

      I wouldn't say they only exist to hide function definitions. If you're compiling multiple source files into multiple object files, having a place to store commonly shared declarations like functions/enums/etc. makes more sense than having declarations being repeated in every source file.

  • @SzBenedek2006
    @SzBenedek2006 Год назад

    Exactly the video I needed.

  • @Debaser36
    @Debaser36 10 месяцев назад

    Nice video. Maybe you do some videos about this topic in general in the future, so I have some constructive criticism (even if it was a while ago). If you don't, then maybe these points will shine some light on things for other people:
    - you could mention, that a #include directive really does what the name tells you: it INCLUDES the file after the "#include" in the file, where the '"include" is. This means, that it COPIES the entire file into your file. I personally find this (in my opinion very smart) solution to the problem of declaring functions quite interesting.
    - you could SHOW some assembly created without optimization. On the one hand from the .obj files, on the other hands from the linked executables/libraries. When I saw that for my first time, a lot of things got more clear for me.
    - you could somehow illustrate the ACTUAL linking of symbols (and what does "symbol" even mean? 🙂 ). Maybe this is somehow a difficult topic, nontheless very interesting.
    - this last point is also a good cliffhanger to go IN-DEPTH on how the CPU really "executes" functions. How do parameters work, how does the OS and consequently the CPU "know", what to return to where, and what to take from where to what as arguments?

  • @alexandernordin3399
    @alexandernordin3399 Год назад

    Thank you for the helpful video! At 7:52, I think you misspoke by saying "defined" instead of "declared".

  • @Popart-xh2fd
    @Popart-xh2fd 9 месяцев назад

    What are the full path of the folders?

  • @MagpieMcGraw
    @MagpieMcGraw Год назад

    When I was doing C I used unity build. Instead of using header files I just included .c files directly. I had my main .c file that had the main loop, and included all the other files into that. It worked beautifully. This method has a downside and an upside. Downside is that you can't tell what each file depends on. The upside is that you have to figure out how to avoid a circular reference, which makes your code more disciplined and organized.

  • @m1geo
    @m1geo Год назад

    Great video! Nicely presented! 👌

  • @frittex
    @frittex Год назад

    ok but where do i get this shirt?

  • @sid6576
    @sid6576 Год назад +1

    Great video, learned a lot.

  • @kevinyonan2147
    @kevinyonan2147 Год назад +1

    according to Wikipedia of C's history:
    *The preprocessor was introduced around 1973 at the urging of Alan Snyder and also in recognition of the usefulness of the file-inclusion mechanisms available in BCPL and PL/I. Its original version provided only included files and simple string replacements: **#include** and **#define** of parameterless macros. Soon after that, it was extended, mostly by Mike Lesk and then by John Reiser, to incorporate macros with arguments and conditional compilation.*
    So if you hate the preprocessor, blame Alan Snyder.

    • @ronald3836
      @ronald3836 4 месяца назад

      Alan Snyder is my hero!

  • @JDAndNightrain
    @JDAndNightrain Год назад

    Can you talk about the pimpl idiom? I've seen it discussed as a way to hide implementation details, but I've never understood it.

  • @jjpaq
    @jjpaq Год назад

    I'm definitely missing something here, but I'm struggling to understand how the .so file is "closed" enough to be a format that e.g. a manufacturer would use to distribute proprietary instructions that they don't want to be easily readable, but "open" (i.e., human-readable) enough that the linker can locate a specific function by name.

    • @mzxrules
      @mzxrules 10 месяцев назад

      I haven't dealt with shared objects when hacking N64 games so I'm not 100% confident on how they really work, but I imagine that on a machine that the user has full access to everything, there isn't really any sort of built-in security beyond the tiny bit of obfuscation that happens when C is translated to machine code.
      However, it's possible to create a machine where only some parts of the are accessible to the user, while others are intended to be trade secret to the manufacturer (think secret co-processers on the main CPU type stuff, which I believe is how the more modern Nintendo consoles try to achieve security). One possible implementation would be to design the hardware so that only the secret co-processor has direct access to the hardware resources... so like the shared object could be distributed publicly in an encrypted form that only the co-processor knows how to decrypt, and the co-processor or even just the hardware design could prevent the user from directly accessing the decrypted object file.

  • @bobtoad8601
    @bobtoad8601 8 месяцев назад +1

    The question is why modern compilers cannot generate those header files and still rely on manually write them

    • @ronald3836
      @ronald3836 4 месяца назад

      You can do it with the -aux-info option of gcc. You'd have to do this in the Makefile similar to how you can let the Makefile invoke gcc to generate dependencies.
      However, the resulting header files would contain definitions that you don't want to expose to other source files. It is possible to do it, but I don't think any serious C programmers ever do this.

  • @TheStuartstardust
    @TheStuartstardust Год назад +10

    Is this not high level learning? 🤔
    Great content - love it!

    • @DeveloVooshGWeb
      @DeveloVooshGWeb Год назад

      yeah... and with jokes aside, I start to wonder why low level programming isn't called high level lmao

    • @EdKolis
      @EdKolis Год назад

      ​@@DeveloVooshGWebThen what would you call high level languages? Lunar languages?

    • @DeveloVooshGWeb
      @DeveloVooshGWeb Год назад +1

      @@EdKolis Idk about you dude, just basing on difficulty

    • @EdKolis
      @EdKolis Год назад +1

      @@DeveloVooshGWeb it's not based on difficulty, it's based on level of abstraction. High level languages are called that because they're at a higher level of abstraction.

    • @DeveloVooshGWeb
      @DeveloVooshGWeb Год назад

      @@EdKolis Aware of that, just don't know why it isn't based on difficulty instead. It can be confusing to navigate.

  • @hugubugu9100
    @hugubugu9100 13 дней назад

    very cool tutorials

  • @Ashish_Bisht
    @Ashish_Bisht Год назад +1

    pls make a video on kernel headers.

  • @gustavorivas5305
    @gustavorivas5305 2 месяца назад

    How I can get a shirt like yours? I just love the design

  • @heanz
    @heanz 9 месяцев назад

    love your channel

  • @lilyscarlet2584
    @lilyscarlet2584 3 месяца назад

    include just copy pastes so really its just a place to put symbol declarations that are shared across different compilation units. object files contain stubs inserted by the compiler and the linker resolves these stubs to some actual memory address at some point. either static or dynamic linking. also i always put extern to make the intent clear for readability even if its not needed.
    extern int x;
    this forward declares a global symbol x which will have some address that will be inserted later. its the same for functions. a function is just a memory address the decoration around it is just so the compiler knows what parameters and how to pass things on the stack and what the return is.
    extern int Add(int, int);
    the actual definition could be anywhere as long as its part of one of the files that the linker will pull in.

  • @sritharan20
    @sritharan20 Год назад +3

    man your awesome, you just answer the most intricate questions devs have. I just had this doubt today and you video came in. Great service. Thx again.

  • @DeeboAvocado
    @DeeboAvocado Год назад +1

    “I trusted you but now your words mean nothing to me because your actions spoke the truth.” -Linker

  • @alex-krycek
    @alex-krycek 11 месяцев назад

    Hello LLL!
    Could you explain what happens in the linking process? What does it do to the object file? How can the executable locate the library code at runtime to execute it? I like to know how this whole world of references and dependencies works in Linux.
    Thank you very much for sharing your knowledge, I really appreciate it.

    • @ronald3836
      @ronald3836 4 месяца назад +1

      Dynamic linking on Linux is done by ld.so. The object files are in the ELF format, which contains information about the symbols that still need to be resolved.

  • @minirop
    @minirop Год назад +2

    damn! continuity error at 1:33 (the name of the .o file changed 🥲)

  • @paradoxicalegg6112
    @paradoxicalegg6112 Год назад

    THANK YOU I NEED THIS

  • @dwijdixit7810
    @dwijdixit7810 10 месяцев назад

    This is one of those videos with really clickbaity names, but real content!

  • @MixeuDev
    @MixeuDev Год назад

    which linux distro u use and which ide do u use? thx!

  • @codegeek98
    @codegeek98 10 месяцев назад

    Is it possible to do dynamic linking without having a copy of the .so at _compile_ time, only based off metadata?

    • @ronald3836
      @ronald3836 4 месяца назад

      Not easily, but sometimes you can get it working by creating a dummy library with the right declarations (but no actual implementation).

  • @TheRealMangoDev
    @TheRealMangoDev Год назад

    "client star" - low level learning, 2023. THATS A POINTER!

  • @ZipplyZane
    @ZipplyZane 7 месяцев назад

    I was expecting this to answer why they decided to create these standard headers and not bake what is in them into the language. I assume it's a historical thing, possibly combined with just how low level C is intended to be. They didn't want to have code that is only added if it is used baked into the language itself.

  • @75hilmar
    @75hilmar Год назад

    Where can I get this T-Shirt?

  • @FireChronos
    @FireChronos Год назад +1

    That shows how they work, but I never really got why the compiler didn't just handle all of that to begin with. Why is another file necessary when it's just duplicating code that was already written? Wouldn't it make more sense to DRR?

    • @ronald3836
      @ronald3836 4 месяца назад

      You can let gcc generate a file with all declarations (using -aux-info). But in practice the programmer wants to control what declarations the other source files see. The header file is the interface to the source file, and it is a good thing to think about what you want to be in the interface. Declarations that are purely internal to the source file should be kept in the source file.

  • @noosetime9423
    @noosetime9423 8 месяцев назад

    ok but why not make the .c files compile into libraries that can be read as a header files by LSP/Compiler? Like it already needs to have most of the info, some function signatures aren't gonna break it zzz
    and you could statically compile libraries or dynamically include them. headers are sometimes cool, but usually it's just more code for same thing.

  • @TechwithHari
    @TechwithHari Год назад

    We need a video on makefiles!

  • @Ozzymand
    @Ozzymand Год назад

    How did you get your vim? nvim? to look like that? Do you have a tutorial for it?

  • @wazawalter
    @wazawalter 4 месяца назад

    my first guess is that there are some types that are called the same in different libraries?

  • @icycat9433
    @icycat9433 7 месяцев назад

    Somebody can explain me why using multi-module code require to create a header file, and then needs to include the header file in both?

    • @ronald3836
      @ronald3836 4 месяца назад

      If a source file include "its own" header file, you can be sure that the compiler will flag any inconsistencies between the function declarations in the source file and the header file. Also, if the header files declares structs and types, you won't have to repeat those declarations in the source file.

  • @Sakapaka
    @Sakapaka Год назад

    how does including the client.h in code.c give access to the definitions in client.c?

    • @ronald3836
      @ronald3836 4 месяца назад

      Including client. h in code.c gives code.c access to the declarations in client.h.