How I program C

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

Комментарии • 1,8 тыс.

  • @henrykkaufman1488
    @henrykkaufman1488 2 года назад +1505

    "In the beginning you always want the results. In the end all you want is control." These two lines more or less sum up my 10 years of programming experience.

    • @grimvian
      @grimvian Год назад +49

      With my experince - almost seven decades, I think that statement address everything in my life. Except regarding my wife, I still in the beginning. 🙂

    • @dancom6030
      @dancom6030 Год назад +16

      @@grimvian 70 years? Damn you must've met Dennis Ritchie himself lol. But joking aside that's awesome.

    • @grimvian
      @grimvian Год назад +38

      @@dancom6030 It's over 40 years ago, I got my first computer born with BBC Basic and inline assembler. One second to boot and no noise. So back then, I learned hexadecimal and 6502 assembler.
      I could even have met Dennis in the discotheque in the seventies and having beers together, but I did not know English either. :o)

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

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

      what does he mean control

  • @jiayu5988
    @jiayu5988 2 года назад +716

    0:00 intro
    5:00 garbage collection is not suitable for high performance scenarios
    6:20 prefer stable & concise language features & technology stack
    8:25 avoid ambiguity
    11:00 don't be "clever"
    11:45 be explicit
    14:40 static-type language can catch more errors
    16:00 early crashes are better than hidden bugs
    17:30 improve your developing tools
    20:20 general naming convention & coding style
    27:20 prefer imperative & sequential code, long functions are OK
    31:40 function naming
    35:20 API design
    36:00 how to organize .h & .c files
    38:40 C & OOP-style APIs
    41:00 void pointer is your friend to hide internal data
    44:18 macros: __FILE__, __LINE__
    49:40 a custom allocator for memory debugging
    53:10 macro utilities for binary data packing/unpacking
    57:10 memory control & pointers
    1:03:00 malloc
    1:06:00 arrays
    1:09:20 struct
    1:11:15 inheritance via C pointer casting
    1:16:35 struct packing, padding, memory alignment
    1:22:55 memory pages, realloc, gflags.exe
    1:33:42 memory caches
    1:42:30 don't store data twice
    1:45:25 trick to reduce allocations: Flexible Array Member
    1:48:30 trick to reduce allocations: joint malloc (dangerous)
    1:50:48 use "stride" for better handling of Array Of Struct (AOS)
    1:53:15 architecture on top of small & flexible primitives
    1:55:45 prefer incremental progress
    2:00:00 fix code ASAP
    2:01:55 UI application design
    2:08:50 Carmack's fast square root algorithm
    2:09:56 magical random number generator
    2:10:30 closing, contacts

    • @rutabega306
      @rutabega306 Год назад +19

      Nit: fast sqrt isn't Carmack's. From Wikipedia:
      > The algorithm was often misattributed to John Carmack, but in fact the code is based on an unpublished paper by William Kahan and K.C. Ng circulated in May 1986. The original constant was produced from a collaboration between Cleve Moler and Gregory Walsh, while they worked for Ardent Computing in the late 1980s.

    • @montyoso
      @montyoso Год назад +6

      I added this list of chapters to SponsorBlock so the users of that extension can see them on the timeline.

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

      Thx

    • @Kitejrpaladin
      @Kitejrpaladin Год назад +6

      He has a point about 5:00, the biggest optimization you tend to do in GC languages aside from improving the algorithm is minimizing allocations to reduce garbage.
      Languages like C#, Java, and Go are massively improving their performance stories. I can really only speak on C# as I’ve been following the changes. Access to CPU instrinsics, stackalloc, no copy slicing, Ahead of time compilation,
      These languages have gotten much better in that area, they can definitely reach really high throughput, where the GC can trip you up is in latency sensitive scenarios. Also runtime reflection.. it’s used a bit too willingly by libraries.
      I think these days if I really wanted to write in a systems language like C, with a batteries included Stdlib, and explicit control over memory I’d probably use something like Zig.
      Keep the core language simple, use type inference, treat types as first class so the language should have the ability to modify types and run expressions at compile time.
      Pretty much don’t use macros let type system be expressive enough to do what macros do so everything is type safe.

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

      > 1:11:15 inheritance via C pointer casting
      Personally, I think this is Polymorphism concept in OOP instead, fix me I'm wrong.

  • @billowen3285
    @billowen3285 3 года назад +121

    I've been trying to learn C++ and have realised that C is actually the place for me

  • @Pico_444
    @Pico_444 4 года назад +1924

    The only thing better than C is HolyC

  • @mannycalavera121
    @mannycalavera121 4 года назад +381

    As a beginner I can't explain how much I appreciate this video. Clear, concise and simplified without sacrificing content. I started with python and am struggling with picking up C. Learning syntax is one thing, learning HOW to apply it is another

    • @daemonzap1481
      @daemonzap1481 2 года назад +44

      I am a college student and C is my first language and now I am learning Python and it feels wrong not putting brackets or semicolons everywhere lol

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

      You hit the point! Some paper I have learned by heart and my mentor pointed me millions of times how to apply things I already knew!

  • @danflurry
    @danflurry 2 года назад +98

    “Fuck macros!”
    *proceeds to discuss benefits of macros for ten minutes*

    • @justshinigami9364
      @justshinigami9364 8 дней назад

      something can be bad, but still be useful anyway regardles. but i get what you mean and feel, that was my first impression for a few minutes as well :D

  • @randomrfkov
    @randomrfkov 2 года назад +89

    The video is nearing 6 years, yet one of the most profound video on C programming.

    • @draganjonceski2639
      @draganjonceski2639 Год назад +4

      When will C99 be old enough though lol

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

      @@draganjonceski2639 Maybe when it’s 25 years old lol

  • @potatoxel7800
    @potatoxel7800 4 года назад +659

    Wow. this guy doesnt even use powerpoint. he uses C for slides :D.

    • @bjarnestronstrup9122
      @bjarnestronstrup9122 4 года назад +52

      Disappointment he uses Visual Studio

    • @sharishth
      @sharishth 4 года назад +16

      @@bjarnestronstrup9122 lol you expected vim?

    • @bjarnestronstrup9122
      @bjarnestronstrup9122 4 года назад +42

      @@sharishth Vim is great , Emacs is also acceptable . IDE's are overrated bunch of bloat.

    • @sharishth
      @sharishth 4 года назад +16

      @@bjarnestronstrup9122 nano is love nano is life

    • @bjarnestronstrup9122
      @bjarnestronstrup9122 4 года назад +28

      @@sharishth Yes nano is alright, but once you get used to vim keybinds everything else seem like torture :).

  • @Krakatou1
    @Krakatou1 3 года назад +60

    You are a legend! I've been writing C code for 20 years and you've taught be a few ticks I just hadn't realised until now. Thank you.

  • @gazehound
    @gazehound 4 года назад +432

    "the compiler is your friend when it tells you something is wrong."
    This is very true, but the problem with that is that C compilers give the least detailed or useful error messages out of any language I use, not to mention that managed languages give you actual error info at runtime instead of just "segmentation fault."
    Edited for clarity.

    • @gazehound
      @gazehound 4 года назад +27

      that js snippet would set x to undefined, not zero

    • @gazehound
      @gazehound 4 года назад +27

      anyway i mostly agree with the stuff in this video but i think the takeaways can be applied to non-garbage-collected languages that are much better than C

    • @gazehound
      @gazehound 4 года назад +12

      or even to garbage collected languages, because GC in a lot of applications is fine

    • @Jam_Spam
      @Jam_Spam 4 года назад +31

      @Simon Farre just don't make errors it takes so much time out of your day as a programmer and one of the things that impacts your efficiency the most

    • @Bennyhanaa
      @Bennyhanaa 4 года назад +22

      @@Jam_Spam You're expecting people to write thousands of lines of code perfectly without any error whatsoever. are you dumb?

  • @andrew9800
    @andrew9800 3 года назад +24

    I come back to this presentation from time to time. It's given me some good ideas for my own work. Thanks!

  • @molemaster4247
    @molemaster4247 3 дня назад +1

    Wow. I am an undergraduate in comp sci, and oh my goodness… this video opened my eyes to concepts I once thought difficult, but now I have a lot more clarity on them. This was an amazing video

  • @seabass6106
    @seabass6106 4 года назад +19

    This boosts my self esteem to program in a way that !not strictly uses design patterns, but the way you understand best! Thanks for sharing!

  • @bernardomk
    @bernardomk 4 года назад +53

    Awesome, people can dislike, trash all they want but, how many videos like this you see out here? You wanna watch a video on how pointers work? Linked lists? This is real life code and it's awesome that someone took the time to do a video like this. Congrats, man!

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

      Interesting idea.... I found there were better ideas in books on C.

  • @LagMasterSam
    @LagMasterSam 3 года назад +64

    1:42:00 - If you already know the index to remove, you can just use memmove. It's much faster than most people realize because it will invoke SIMD operations and hardware intrinsics to move multiple chunks of memory per cycle. It can actually be faster to memmove an array to remove an element than to remove an element from a linked list using pointer reassignment. Pointers can make things very slow if they aren't used correctly.

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

      I wish I could save comments that is interesting i'll have to test this out.

  • @heapslip8274
    @heapslip8274 4 года назад +65

    Thank you for this. I wish there was more of this kind of content available, but nowadays it's full of "Learn X in 2 hours", "How to make a CLI tool in X", etc. This was something I watched closely and took notes.

  • @jtw-r
    @jtw-r Год назад +15

    “if you’re gonna be a good programmer, you’re gonna want to learn how to do things” ugh exactly!!!!!! there’s so many phenomenal points in this presentation
    -
    Although there was a LOT of typos in it 😂 no judgement though

    • @anonnon2278
      @anonnon2278 5 месяцев назад

      Some where in Nietzsche there is the line - don't think about all the stuff you must know, think about what you must DO.

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

    Keep coming back to this video. Such a gem.

  • @EvasHookGame
    @EvasHookGame Год назад +12

    Started my journey of learning C++ 6 months ago from 0 experience in programming, just watched 16 minutes of your video for the moment but you're already saying "philosophical approach" stuffs I instantly felt during my very young journey.
    Very glad to hear my noob "feelings" are not that "heretic" : "why overloading if I could just type few more lines ? why hiding me some details of the code and optimize things I could do myself , getting me bad habits ?" ( especially when learning the roots of how everything work, it's hard to connect the dots lol )
    Thanks from a rookie, to help me open my mind in this world :)

    • @shrekeyes2410
      @shrekeyes2410 Месяц назад

      Read up on dependency inversion, thats the #1 biggest thing that makes for clean code.
      It is the god all mighty of abstraction and code simplification.

  • @brecoldyls
    @brecoldyls 4 года назад +80

    I will be honest, at first I did not like this video too much. However I kept watching until the end and now I think I really like it. I think the parts about why C is the best language and other programming languages aren’t so great could be left out. I really like the deeper knowledge that this video provides. I think this video is not just a great video about C, but rather a great video about computers, programming, and memory through C. Thank you for sharing

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

    I'm a Julia programmer (started with C and C++) and I love watching videos on lower level languages like C/C++ and Rust and always appreciate the level of control you can get over your memory.
    I love the framing of "Not wanting to manually manage memory but then living in fear of the garbage collector"
    I think the reason why people fear the garbage collector is because they don't understand how it works, and then they make mistakes which worsen the impacts of it.
    In Julia's documentation there are dedicated sections to the internals of the GC and how to optimize your code so that your code can work in tandem with it.
    I've had so many situations where simply tweaking my code according to those guidelines resulted in ~4x speedups and ~3x less garbage collection.
    No matter the language, try to learn it inside out to the point where writing optimized code doesn't even require thinking about it.

    • @catocall7323
      @catocall7323 Год назад +6

      That adds to his point though, the time spent researching and understanding how to work around your languages garbage collector is time that could have been spent learning how to manage memory instead.

  • @rayboblio
    @rayboblio 3 года назад +11

    This is fantastic. So much experience condensed into an easily digestible format. Thank you for sharing!
    Having a bit of (theoretical) background in C and C++, just from reading mostly, I've always been hesitant to work in C. Most of that hesitation comes from what I learned in school about OOP and all the do's and don'ts. I've already started doubting much of that since, I always felt it made programming so much harder than it had to be and your video just gave me that extra push.

  • @oct_nate
    @oct_nate 2 месяца назад +5

    RUclips recommended this again after a year and I it think this is gonna be one of those videos I come back to every year to pick up new info and see how my C understanding improves

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

      That's exactly how I treat Terry Davis videos/old livestreams

    • @grimvian
      @grimvian Месяц назад +1

      In my third year of my fantastic journey in C programming and I'm still coming back to the C wisdom.

  • @badwolf8112
    @badwolf8112 4 года назад +24

    i love operator overloading, its so expressive. if you don't know what an operation is, don't guess, read the interface

    • @skejeton
      @skejeton 2 года назад

      but its much nicer to just see exactly what's happening

    • @atijohn8135
      @atijohn8135 Год назад +12

      @@skejeton if you're not simultaneously using 5 different libraries for vector math, you'll know what "a * b" means everywhere

  • @raihankhan197
    @raihankhan197 4 года назад +173

    I would really love to see a whole C tutorial. I have been searching someone like you, who can really teach C. Please, I really insist you to make aa whole tutorial series for C. I am a new CS student. And I absolutely love C. I also want to do some networking, system programming. You tutorials will help me a lot and others too. Please make a series.

    • @williamreji435
      @williamreji435 3 года назад +11

      Try Casey handmade hero ,chillitomatonoodle and cherno..with some algorithms and books on the side

    • @dinethnirmal7888
      @dinethnirmal7888 3 года назад +8

      Try jacob sorber, brian will, brian fraser and barry brown

    • @apresthus87
      @apresthus87 3 года назад +41

      Don't think you should learn C by following tutorials, it's really a terrible idea, and I speak from personal experience. You become a much better programmer by doing your own projects that you care about, from scratch and try to figure out things as you go, looking up certain things a long the way if you get stuck. Getting stuck in tutorial hell will get you nowhere. Just many hours of videos watched when you could have been making stuff and honing your skills. That being said, C is an amazing language. I come from a C# and JS background and I fell in love with C once I decided to learn it properly. It's so pure in a way, I find that I can focus a lot more of my time of figuring out how to implement functionality in my code rather than worrying about abstractions and things not related to what I'm actually trying to do. Good luck!

    • @raihankhan197
      @raihankhan197 3 года назад +9

      @@apresthus87 What you just said, I did that exactly the same way. I wrote that comment 5 months ago. I already learnt C and C++ then. But I wanted to know more From experienced programmers. I did small and also big projects with C and C++. I love lower level things so much, that after 1 and a half year I am still using C and C++. Learning new things, trying frameworks, graphics library etc. I just wanted to know more, thats why I wrote that comment.

    • @apresthus87
      @apresthus87 3 года назад +3

      @@raihankhan197 That's good to hear! My answer was just as much for beginners that stumble over videos like this. Many beginners get tricked into thinking you can become a good programmer by watching tutorials. I used to be one of them :D I wanted to see how experienced programmers structured the code as I went on instinct more so than anything when making my game engine as my first big C project. I'm happy to hear that you are doing well and still using C though! :)

  • @NeedBetterLoginName
    @NeedBetterLoginName 4 года назад +135

    This is literally one of the best advanced programming talks on RUclips. 30 years of experience programming and so many "hey that's brilliant moments". Thank you for making this. (You gotta spell check your code comments more though. yeesh!)

    • @Elinzar
      @Elinzar 4 года назад +8

      fuck spell checking in the comments lmao, we already do enough in the code v:(---

    • @Rafale25
      @Rafale25 4 года назад +16

      @@Elinzar Well, maybe this one at least : "Acitectectiure" 1:53:22

    • @Julian-mc3tc
      @Julian-mc3tc Год назад +22

      @@Rafale25 you know somebody is a great programmer if he can't speak human languages anymore

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

      @@Julian-mc3tc that's bullshit bruh. also this talk is kinda trash and culty and is literally anti-intellectual. Science and technology is built on top of common trust and sharing. him trying to prove he is a genius after literally saying don't be clever.
      watch jacob sorber or molly rocket :: handmade hero if you actually like building stuff with C. There is also this guy who builds like tiny 8 bit pcs from scratch which is pretty cool.

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

      😂😂@@Julian-mc3tc

  • @MonkoGames
    @MonkoGames 2 года назад +5

    I'm an intermediate C programmer, and this video was very very helpful and very well put together. Thank you. I wish I saw this immediately after taking a C course!

  • @franzflasch8181
    @franzflasch8181 5 лет назад +145

    The best thing about C is that it IS actually a very simple and elegant Programming Language and you still get full control of your HW with it. I never understood why so many people hate it so much. As you are pointing out at the beginning, I actually love it for all the reasons other people hate it. Thanks for this very good talk!

    • @andreika6681
      @andreika6681 5 лет назад +23

      project managers hate it, not programmers

    • @RivenbladeS
      @RivenbladeS 5 лет назад

      @Abigail Jones Link for the debugger?

    • @Muck-qy2oo
      @Muck-qy2oo 5 лет назад

      @@andreika6681 Like always they want a result without minding about mastering the process.

    • @Artaxerxes.
      @Artaxerxes. 4 года назад +6

      havent seen a computer science major hate it. Programmers who come from shit background are te ones that dislike it

    • @taslaklar1155
      @taslaklar1155 4 года назад +9

      Franz Flasch No, in fact NO. I love C, but even this tutorial is full of undefined behaviour (WHICH is really dangerous) and bad C practices. Do not cast pointers, do not cast structs even when they are identical. Do not ... C is full of DO NOT´s which you really must avoid doing.

  • @Stillow
    @Stillow 4 года назад +1528

    pretty dissapointing video, no indian accent

    • @purplep3466
      @purplep3466 4 года назад +18

      I WANNA SEE JOMBO 😭

    • @SimGunther
      @SimGunther 4 года назад +25

      If you squint your ears enough, you'll hear a vaguely Indian accent from his beautiful Swedish voice

    • @RagHelen
      @RagHelen 4 года назад +24

      A coding tutorial without honking cars in the background.

    • @azenkwed
      @azenkwed 4 года назад +25

      ... and he used a good microphone. ... and there no loud generic techno music playing in the background. Very disappointing indeed.

    • @azenkwed
      @azenkwed 4 года назад +2

      @Sebastian Oleński He's being sarcastic.

  • @indycinema
    @indycinema 4 года назад +176

    This is insanely useful. Lots of idioms that a JS dev getting into C needs to hear.

    • @QckSGaming
      @QckSGaming 4 года назад +30

      Take it with a huge grain of salt. There's a reason why many "new" features have been built to newer versions. This code you are looking at is very outdated. Like, why name something module_object_action when you could use namespaces which is made exactly for that cause (module::object.action). I'd look elsewhere. He also advocates monster functions which is just horrible and completely unmaintainable and unscalable way to code.

    • @uziboozy4540
      @uziboozy4540 4 года назад +11

      Using C in 2020? Come on.. you should be using Rust instead 😂

    • @zakarouf
      @zakarouf 4 года назад +5

      @@QckSGaming problem with namespace comes when you're in a shared project with multiple programmers.
      It gets confusing real fast. In standard libraries yeah it's fine nobody will confuse 'cout', but other than that yeah.....

    • @zakarouf
      @zakarouf 4 года назад +42

      @@uziboozy4540 old stuff != bad and vice versa, plus everyone have their preference. If you like rust more power to you. People need to try out new stuff especially in tech field.
      But disregarding something just due to its age is bad mindset.

    • @uziboozy4540
      @uziboozy4540 4 года назад +2

      @CooCooWizard overrated? Whether or not you think the syntax is garbage, is just your own sensitive opinion.
      To me it just sounds like you're either too stupid or too lazy to learn the language.
      If you don't like it, don't use it.
      Rust is still better than C or C++ without doubt.
      Please, elaborate on anything that is better in C/C++ as opposed to in Rust.
      I'm not a fan of the way implementation works in Rust, so that's a win for C++ there with classes.
      Other than that.. nothing

  • @splodgebox
    @splodgebox 5 лет назад +131

    I really support this guy, You can kinda see that he is dyslexic but he tries which you gotta respect. Along with the fact it didn't stop him.

    • @tah3460
      @tah3460 5 лет назад +74

      @Abigail Jones Norwegian here! All Swedes are dyslexic. It's part of their culture!

    • @javaman5
      @javaman5 5 лет назад +20

      I would prefer a Swedish programmer that do a few spellings errors which the compiler will handle, before a Norwegian fish farming guy with an IQ slightly under the salmon's.

    • @3rdvoidmen594
      @3rdvoidmen594 5 лет назад +2

      @@tah3460 lol and all Norwegians have a funny bone?

    • @amadlover
      @amadlover 4 года назад +2

      why dyslexic ?

    • @favourotiger2920
      @favourotiger2920 4 года назад +4

      How do you know he is dyslexic?

  • @konstantinrebrov675
    @konstantinrebrov675 4 года назад +14

    Wow! I learned so much in this lecture! A real treasure, cheers!
    The examples are very good for understanding the concepts.

  • @JA-in3hw
    @JA-in3hw 2 года назад +5

    I love this talk a lot. Watched it a year or two ago when I was starting out moving over to c from c++. Just re-watched it after actually getting into a c opengl project pretty good. Got a lot more out of it this time. I really agree with your philosophy and found myself doing a few of these "wrong". Gonna incorporate some of these tips. Cache friendly main loop is still eluding me. Thanks for all the sharing you do.

  • @radman999
    @radman999 Год назад +4

    This is a great talk, I have listened to select parts 5 or 6 times. Thanks very much for sharing your experience.

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

    22 minutes in, and this is totally my speed right now. This is where I’m at on my journey in learning to use C, and it feels so validating to finally come across something like this. Looking forward to the rest of the video. Thanks for sharing. ☺️

  • @tathtath
    @tathtath 6 лет назад +49

    Nice overview Eskil! I found that people who love C are people who know their hardware. I am one for sure :).

  • @koktszfung
    @koktszfung 4 года назад +164

    "Typing is not a problem"
    proceed to make lots of typo LOL
    but I agree, that's why we have an editor

    • @potatoxel7800
      @potatoxel7800 4 года назад +3

      yeah, along with refactoring tools to rename things. ;D

    • @Tasty_sand
      @Tasty_sand 4 года назад +8

      I think he deliberately made the typos so other people who steals the video to present to others will look dumb.

    • @TheExiledMeriler
      @TheExiledMeriler 4 года назад +7

      "Typing is not a problem"
      But reading what you typed is. You need to read this multiple times and that takes your time. And the more time you spend on reading abd understanding the more time you lose on other tasks. We kinfa don't have 3 years to write server for our project, cause during that time it would be outdated enough.

    • @shalokshalom
      @shalokshalom 4 года назад +5

      @@TheExiledMeriler See the guys homepage. I think this is some form of learning disorder or so. As you hear, can he speak just fine, so it'ss not about his native origin or so. I know for a fact, that there are disabilities who prevent consistent and correct spelling. That does not impact your ability as programmer, obviously

    • @94Quang
      @94Quang 3 года назад +9

      I think he mentioned that he is dyslexic. So I think we should give him a break :).

  • @kellybmackenzie
    @kellybmackenzie Год назад +4

    I absolutely love this so much, thank you!!

  • @amitjosh79
    @amitjosh79 4 года назад +18

    In your Javascript example - 'x' will not be ZERO, but 'undefined'.

  • @ratchet1freak
    @ratchet1freak 8 лет назад +104

    the inverse square root works because if you bitcast a floating point to an int you get a decent approximation to the log2 of the number in fixed point.
    Then it uses the fact that log2(x)/ 2 (where the bit shift comes into play) equal to log2(sqrt(x)) and a bit more math™ to get a good approximation of the sqrt which is then refined using 1 or 2 newton-raphson iterations.

    • @tobianew6493
      @tobianew6493 5 лет назад +1

      What🤔🤔🤔🤔🤔🤔

    • @johnsherfey3675
      @johnsherfey3675 4 года назад +15

      Makes sense

    • @Vaaaaadim
      @Vaaaaadim 4 года назад +1

      interesting!

    • @ekrem_dincel
      @ekrem_dincel 4 года назад +4

      You are a crazy mathematician!

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

      @@ekrem_dincel there are several explanations for this on the web. It was popularised due to the source code reveal of quake III, so the algorithm is quite well-known. (Apologies if he said this in the video. I haven't watched that far yet.)

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

    This has some really good points. In my (admittedly somewhat limited) experience c++ is good/ fine if and only if you are disciplined about the abstractions you create. For whatever problem you are trying to solve, think carefully about what abstractions will make solving the problem easier then implement them, including operator overloading, and then STOP. The rest of the time, build the solution out of those early abstractions and don't introduce new ones unless there's a VERY good reason for it. Then you get the best of both worlds. It doesn't make sense to have to write loops to add two vectors. "+" works perfectly IF you are disciplined about it. That's why c programming experience is vital for good c++ programmers. Coming at c++ from python without c experience will transfer the "wanting results" to c++ code instead of "wanting control" as the video says. Good points, just not quite so absolute.

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

      Agree about C++ being good and having the discipline to not over-engineer your code. I think that can be applied to any language - when I used to write Java and I was still relatively new, I had a habit of getting carried away with class hierarchies and abstractions. At the end of the day the abstractions were mostly useless, and they overshadowed the actual code that solved the problem. Nowadays I do a lot of C++ and I've learned a lot since then. One of the most important lessons was to just build the damn application. You don't need class hierarchies unless you have a very good reason for them, and you shouldn't introduce extra abstractions until you have a clear need for them. Having to refactor some code is not the end of the world.

  • @danielcjlee2871
    @danielcjlee2871 2 года назад +6

    Excellent demo! I've learned so much concept and programming technique from this video.

  • @jean-naymar602
    @jean-naymar602 4 года назад +306

    12:15
    Not a compelling argument at all in my opinion.
    Operator overloading mostly makes sense when it's used to define real mathematical operators. (With the exception of string concatenation i guess, and maybe other types)
    Operators *ARE* functions. They take data in, they spit data out.
    If you're smart enough to understand that "strcat" concatenate two strings together, you're smart enough to understand that '+' concatenate two strings together. Its just another notation to mean the exact same thing.
    Using the example of vector multiplication is dishonnest : its ambiguous because there's no clear definition of what a multiplication of vector is. Not because '*' is not explicit in and of itself. And that's why half the people say parwaise mult, and the other half say dot product : They don't know because there's no good anwser.
    In fact, i'd like for you to elaborate on why you think "mult_vec (&vecA, vecB, vecC)" is somewhat more explicit than "vecA = vecB*vecC". there's no sementic difference between them... they mean the *exact* same thing. They're Just written differently. Therefore if "mult_vec" is explicit, so is '*'.
    I suppose you *DO* use operators on primitive data types ? Why ? Why are they explicit enough ? Because you know what '+', '-', '*', '/', '%' mean on numbers.
    In reality, no operator is explicit. You **HAVE** to know what they do to know what to expect from them.
    If I'm able to know what an operator does to primitive data types, I don't see why I wouldn't be able to do the same for other data types.

    • @karma6746
      @karma6746 4 года назад +32

      You clearly missed the point.
      What an operator does to primitive data-types is clearly and unambiguously defined by the standard. It is guaranteed to remain the same forever, irrespective of the compiler and much less of the person writing the code. With overloading, it is up to whims and fancies of whoever implemented it.
      mult_vec (&vecA, vecB, vecC) clearly advertises itself to be a function call, the documentation of which can be looked up. B*C looks like a standard operation when it could be, sans any type info, literally anything.
      To make matters worse there could be 100 different overloads of the same '*' operator even for the same type for different second arguments types. My biggest pain when debugging C++ code is that there is no quick way of finding the correct overload or template specialization that is being invoked.

    • @QckSGaming
      @QckSGaming 4 года назад +11

      @@karma6746 Also, mult_vec shows that you are _modifying_ an existing object (pass by ref) while a = b * c might return a _new_ object

    • @0xCAFEF00D
      @0xCAFEF00D 4 года назад +5

      I agree mostly. It's really a problem of having a feature that risks ambiguity. In C you'll know what uint + uint is assuming basic algebra knowledge (and overflow knowledge). For many it may be unintuitive what uint* + uint does. But the reason that isn't a problem is because it's well known to someone who knows the rules of the language. People can agree that someone who doesn't know the fundamental rules of the language don't count and I think most do. You wouldn't criticize a language because a newbie doesn't get it. They're taken out of the legitimate confusion set. And you need that boundary somewhere. For operator overloading it's not going to be consistent everywhere. I can't hold you to a standard where you have to intuit what every library author chose their vec*vec to mean.
      It's a risk averse approach. Not trying to absolutely eliminate confusion.
      I'm not personally all that opposed operator overloading. If that's the only interface for types I don't approve of I wrap it. I use it for vector types sometimes. You really just have to check that you know what the operators do before you use them.

    • @lupsik1
      @lupsik1 4 года назад

      I think theres an even better argument IMHO.
      You can create your own operators to avoid ambiguity. They're not exactly operators but the resulting code will look as if they were.
      stackoverflow.com/a/41780190/7322371
      Im guessing the author of the video would hate that solution but in that way we can have both multiplications : vecA vecB , and vecA*vecB, and at this point its obvious which operation we're performing.

    • @karma6746
      @karma6746 4 года назад +7

      @@lupsik1 That is not creating a new operator. It is simply using a (very ugly) hack that overloads the '' operators to make something that looks like a new operator while relying on not one by two operator overloads in the background, not to mention the additional overhead due to the template being used. But that is not even the real problem. There is a reason why C++ only allows existing operators to be overloaded. If a program is filled with multiple such custom 'operators' does it decrease ambiguity or increase it? Imagine trying to debug someone else's code where he has gone wild with those! Your link serves as an even better example of what is wrong with operator overloading. This is the kind of horror that sub-standard programmers create using the features that C++ provides. This is exactly what Linus was talking about in his famous anti-C++ rant. He wasn't against C++, he was against the large number of C++ programmers who don't understand how to write simple, performant, readable, debugable code. The worst part is that these guys don't even understand what they are doing wrong - they think it is cool!

  • @CaptainTechnicalityLP
    @CaptainTechnicalityLP 10 месяцев назад +3

    23:32 On this point, most IDEs or even text editors have a "match whole word" option when searching, which looks for word boundaries when searching. This removes the issue of searching "my_function" and getting "my_function_with_stuff" and also works for other types like variables.

  • @tadeln
    @tadeln 4 года назад +59

    11:34 - C++ tries to hide things
    55:30 - I've hidden my macro really well

    • @stewartzayat7526
      @stewartzayat7526 4 года назад +11

      If this isn't meant as a joke, you misunderstood what he meant by saying c++ hides things

    • @nextlifeonearth
      @nextlifeonearth 4 года назад +11

      It's you hiding something yourself versus the language mandating things stay hidden from you.

    • @johnjackson9767
      @johnjackson9767 3 года назад +2

      @@nextlifeonearth Exactly

    • @nyyakko
      @nyyakko Год назад +6

      @@stewartzayat7526 except it doesn't. in the same way it was the guy's decision to encapsulate that macro, it also was his decision to do the same with the operator overloading example

    • @me_12-vw1vi
      @me_12-vw1vi 3 месяца назад

      @@nextlifeonearththis.
      control is what you get with c

  • @brucetungsten5714
    @brucetungsten5714 4 года назад +3

    Got back to your video after archiving it and I'm pretty pleased.
    Great work + love your approach!

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

    I come back from time to time to observe this art!

  • @mrglick5050
    @mrglick5050 6 месяцев назад +1

    The inheritance using casting absolutely blew my mind. I have a project with a similiar inheritance sturcture and i never thought to do that. Definitely saving this video!

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

    First half is just "language X does Y which sounds really nice until Z" except you basically never experience Z and Y is absolutely amazing and makes you code faster

    • @eskilsteenberg
      @eskilsteenberg  Год назад +4

      People keep telling me you all these features to be effective. So why do people who don't use them keep running circles around the people who do?

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

      ​@@eskilsteenberg en.wikipedia.org/wiki/Programming_languages_used_in_most_popular_websites
      C is 5%, you think they'd catch on? Not to mention the percent of high severity security bugs related to memory problems

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

      @@GanerrrThe web is the jungle my friend. Full of wild animals

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

    I'm only 16 minutes in but it looks like I agree with you. I have lost days because something didn't throw an error when it really should have.
    I have noticed that clever critiques of programming languages are often used to flex. But in your case, I think you are just thinking for yourself.

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

    There is some sexy code. I suppose the guide really reveals the philosophy of c. That’s so satisfying

  • @adamrexrode789
    @adamrexrode789 3 года назад +2

    All of this information is excellent. Anyone writing code should strive to understand all of these concepts no matter what language is being used. This video may be a bit older, but it is still very relevant. Thank you for posting this wonderful content.

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

    I started with C and then went to Python. I actually felt uneasy with Python right away because it felt like I had no idea what was going on half the time and stuff was happening by magic. 😅

  • @MoveTrueRecords_
    @MoveTrueRecords_ Год назад +6

    Dude this is how teaching should be. I been really trying to innerstand the concept of what code is doing and why numbers are needed. Why why why. Thank you man ❤

  • @santiagolerin
    @santiagolerin 4 года назад +23

    I don't even code in C, and here I am 2 hours into this great video

    • @cioccox
      @cioccox 4 года назад

      nasheeeeeeeeeeeeee

  • @Zynqify
    @Zynqify Год назад +4

    never written a line of c in my life but still watched this
    very nice, think i will pick it up soon

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

    The video description needs to be corrected. This is not programming religion, this is programming philosophy, and damn good philosophizing at that. I've learned so much within these 2 hours of watching.

  • @solitary_crow
    @solitary_crow 2 года назад +1

    One of the most important video to watch on C. Thanks for sharing this valuable information.

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

    Excellent talk.
    Especially for the garbage collection i love C and C++
    This is so crisp and clear explanation: hope you will make more videos like this

  • @Sigmath_Bits
    @Sigmath_Bits 4 года назад +42

    Immediate like for "C is the greatest language."
    Totally 100% agree: I love every feature about C including its limitations. It makes it more elegant, in my opinion: one thing is for sure, I always know exactly what happening (like near the metal) when using C. Or, if I don't, I know that it's completely my fault and not the fault of language weirdness. Everything it does is because I told it to do so.

    • @jeanlucthumm
      @jeanlucthumm 4 года назад +3

      That's true for every other language too. If you feel like there is language weirdness, then it's still your fault for not knowing it well enough

    • @BruceBigby
      @BruceBigby 4 года назад +2

      I do agree with you about the explicitness of C, and you build whatever higher abstractions and libraries that you want to build -- low to high, and full control.

    • @ekrem_dincel
      @ekrem_dincel 4 года назад

      Yeah, who would not love weak typing systems?

    • @avashurov
      @avashurov 3 года назад +1

      How is for witness the fact that int can be 8bit, 16bit, 32bit, or 64bit and even long can be 16bit, 32bit, or 64bit depending on implementation

    • @henrylang699
      @henrylang699 2 года назад

      @@avashurov that's not an issue though, it's not a good idea to ever use "int" or "long", use standard integer types which are guaranteed to have a specific amount of bits

  • @ipeprotoipe9122
    @ipeprotoipe9122 8 лет назад +5

    Thank you so much Eskil. Thank you for sharing both; your knowledge and your style.
    Now everyone can see that the output is just a reflex of the input, meaning that your software are beautiful because the way you think about how to write it, is beautiful.
    There is a large amount of advice and details here that is very difficult to find out alone if you are a beginner.
    Gold in the form of a video.

  • @douglaseleveld2707
    @douglaseleveld2707 8 лет назад +49

    There is a bug at 1:50, not enough memory is allocated

    • @eskilsteenberg
      @eskilsteenberg  8 лет назад +36

      You are right! Obviusly it should be: sizeof(MyStructA) + sizeof(MyStructB) . Thanks for spotting it!

    • @jjinux
      @jjinux 7 лет назад +12

      Best comment ever.

    • @qwerasdfhjkio
      @qwerasdfhjkio 4 года назад +19

      1:50:00, not 1:50 lmao I was confused

  • @maximkovalkov1334
    @maximkovalkov1334 4 года назад +35

    What a great video! Hope more people will be "enlightened" and discover C 's elegance in simplicity.
    And for those for whom some of the shortcomings of C would be a deal breaker, I'd suggest looking into Zig. It aims to be "a better C" by doing away with the most "problematic" features and adding some that really should have been there, while still remaining low-level and explicit

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

      i'm gonna be honest, zig is completely unreadable, would probably just use rust instead

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

      ​@@xydez I'm gonna have to try Zig now.
      Rust is almost entirely unreadable to me, just like C++, so if Zig is really that bad, i'm gonna have to stick with Go.

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

      ​@@epsi the really good thing about rust is enums, they make life a lot easier. Still id suggest you give it a try, its a very nice language once you get the syntax

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

      @@epsi C++ hits the balance just right imo, and it fits in with what he says at the start about how at first you want something to work but later on find yourself wanting extra tools/control that you can't add retroactively.
      You can still write that simple C (only major difference is you have to cast to void* explicitly) as much as you like, but when you find that situation where templates will save you hundreds to thousands of lines of code, or where using a class and some overloads lets you just wrap your brain around a problem by just raising the level of abstraction - they're there for you to use.
      Or you can shoot yourself in the face with them if you're so inclined

    • @miojao-r7r
      @miojao-r7r Год назад

      Zig being a better C is almost the same lie told by C++ inventors to make the new language get adopters because they can't make something better than C, the temptation of doing clever stuff is just too much. Zig does have some good points, but it is almost as complicated as rust and c++, and it has some insane stuff like unused variables stop the compiler from processing your code.

  • @SudilHasitha
    @SudilHasitha 7 месяцев назад +3

    I learnt why C is superior to all. I only know Python and JS front-end framework. Learning C is a fight worth fighting. Thanks this is an eye opener for eveyone.

  • @voicev8426
    @voicev8426 2 года назад +24

    1. About function overloading, I do actually prefer c++ here, as it has a way to specify the type, and be less cryptic about it. It's literals for when that is available or explicitly calling type constructors when not. There is an argument as this is not enforced and implicit type conversions may cause a bug, but when you need it, providing argument type with the arguments themselves, instead of in the function name will force you to change them once you want to edit the function call. As a benefit, you also get arguments types as part of function signature which helps a lot with naming, as while it is good to be explicit, and not have ambiguity, going too much in that direction will lead to code becoming white noise, and it's much harder to not make mistakes, or miss anything while reading.
    2. I agree crashes are good, but to me it's obvious that compile time errors are strictly better.
    Love the video otherwise

    • @skipdrill373
      @skipdrill373 2 года назад +1

      That is true ++

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

      Agree. In general I think any language feature that forces typings from the syntax into the naming tokens (in this case method names) is a bad one. This usually devolves into having to maintain some kind of consistent notation to encode the type into the name in the interface (like Hungarian notation), and quickly becomes unruly.
      This is also a case where a compiler could easily warn that one of the arguments is being downcast or whatever in the given example

  • @r.f.mineguy7715
    @r.f.mineguy7715 Год назад +6

    That point at 31 minutes makes no sense to me. Wouldn't you want to be able to read your code flow without having to worry about scrolling through it and potentially getting lost in it? Like forgetting about some state that you set 300 lines earlier that matters later in the code?

  • @jayflaherty5260
    @jayflaherty5260 3 года назад +76

    The most underrated nugget of wisdom is "build a mountain." Everyone thinks those of us that write C code constantly reinvent the wheel or start from scratch. Most of us have been building a mountain for years that all future work just builds upon. It takes awhile to build but once you do, it's yours and you wrote it so your productivity is enormous. You can then focus on debugging your code instead of debugging your knowledge of the language as I find myself doing with languages with ready built mountains like C++ and Rust. It's why I am interested in Zig as their philosophy seems to be in line with this idea of keeping the language simple but slightly higher level of abstraction.

    • @MrAbrazildo
      @MrAbrazildo 3 года назад +1

      C++ is pretty easy do debug. We build mountains too, even resulting in syntax ≃ to higher level languages.

    • @jayflaherty5260
      @jayflaherty5260 3 года назад +1

      @@MrAbrazildo Well, this is the debate. OO tends to reduct the total lines of code, but increase the lines of code you have to view when you debug per issue. When you look at the code that triggered the bug, it's hard to tell what is local and what was inherited, patched, subclassed etc.

    • @MrAbrazildo
      @MrAbrazildo 3 года назад

      @@jayflaherty5260 In C++ you can name a list of 'friend's, which says who can access specif data. To breach that security, a bug has to be nasty, usually combining more than 1 error.
      And it's possible to craft tools behind operators or classes, which can debug without changing the external code.

    • @Waldganger64
      @Waldganger64 3 года назад

      ​@@MrAbrazildo Look at the standard library error messages, I mean, what were they thinking ?

    • @MrAbrazildo
      @MrAbrazildo 3 года назад

      @@Waldganger64 Do you mean exception handling messages? I don't use them.

  • @a.b.c.d.e...
    @a.b.c.d.e... Год назад +5

    I would advise anyone to take this with a grain of salt. It's a good talk and there a lot of valid points made, but I suggest not to take everything he says as ground truth.
    There are millions of productive programmers in the languages this guy is effectively calling "inherently wrong". And many smart minds who have designed them.
    You have to find and use what works for you, not what works for someone else.

    • @japie8466
      @japie8466 Месяц назад +1

      Finally a sensible comment

  • @o_enamuel
    @o_enamuel 3 года назад +3

    the thing of allocating arrays on stacks and pointers = arrays are the most important lessons of this video imo.

  • @grimvian
    @grimvian 2 года назад +16

    Content with very skilled competence. After 18 month of C++ and writing two relation databases and tons of training code, I realize, that C must be the future for me. I’m hoping Eskil is making more talks about C. It’s is gold and super interesting. The parts with structs, pointers and memory management is fantastic and explained very well!

  • @Seacle14
    @Seacle14 5 месяцев назад +3

    It's amazing how many things one can know about programming and still have 0 idea how to spell basic words.
    And I mean this as a compliment. You don't waste your time learning things which don't matter to you.

  • @seanmccrary8300
    @seanmccrary8300 7 месяцев назад +1

    Hello, I just came across your channel and I'm glad I did. I'm new to programming, the paradigm that most people on youtube teach when talking about programming never has resonated with me. I just don't learn that way. My mind can't think abstractly enough to understand some of the stuff they talk about. I understand things more literally. I've been trying to find resources for quite some time now that would help me get my foot in the door for programming. I've been through the trenches of tutorial hell with several language. From what I've gathered from your lecture is that C can abstract things if you build your program to do so, but it also seems very explicit. Maybe I'm wrong on that. I come from a hardware background, was in the Navy for a long time and have a deep understand of electronics and digital electronics like TTL and IC. I've always wanted to get into programming, mainly because I've always wanted to make a badass game, that was mine. Is there any resources you could share that could help me get started on this journey? Maybe ways to think about the tremendous amounts of mathematical understanding you need to do something like you did with building a graphics rendering in scratch? I think I've made up my mind though, C seems to be the language for me. It's closer to machine code then anything else I've seen, save ASM.

  • @vtvtify
    @vtvtify 4 года назад +33

    I write in "C+", I use specific features of C++ that make life easier. I definitely recommend to try that approach.

    • @jmullentech
      @jmullentech 4 года назад +9

      Can you explain what you mean by that? I'm guessing you mean you write/compile in C++ but you tend to use the base of C with very few pieces of C++ used on a "as needed" kind of basis?

    • @vtvtify
      @vtvtify 4 года назад +6

      @@jmullentech For example, If I need a priority queue (I am a competitive programmer), I use the one from stl. I compile as c++, but I use raw arrays and memset instead of vectors when I dont need extra vector features such as dynamic memory, etc. When a c++ feature makes life easier, I will use it instead. for example, memset is only for same-byte fill. If I want to fill an array of integers to a value like 1337, memset cant really do that, I use std::fill_n (c++ feature) instead. Stacks, Queues, Sets, etc are really user friendly and implementing them, especially in time limited senarios and competitios is kinda pointless
      I believe for every field in C/C++ usages, there exists a right balance between C/C++. In competitive programming for example, stl saves you a crap ton of time. I rushed this explanation since it's 11 PM my time, if ya have any questions hit me up, lior5654#1856 (discord)

    • @SaidMetiche-qy9hb
      @SaidMetiche-qy9hb 4 года назад +3

      @@vtvtify memset is a C function bro, lol

    • @vtvtify
      @vtvtify 4 года назад +5

      @@SaidMetiche-qy9hb I know, that's the whole point. Re-read the sentence. C is usable within c++, C+ is writing c-style with specific c++ features. Memset in an example of a C featute

    • @vtvtify
      @vtvtify 4 года назад +1

      @@SaidMetiche-qy9hb oh it was put in the wrong part of the sentence, sry. Editing now

  • @paulofonseca7664
    @paulofonseca7664 3 года назад +2

    Very nice talk, filled with valuable advice. Thanks for taking the time.

  • @asmrenjoyer2016
    @asmrenjoyer2016 4 года назад +7

    You speaking straights facts for two hours straight, damn.

  • @androth1502
    @androth1502 6 месяцев назад +2

    7 years later, still the best C resource on the net.

  • @swarnavasamanta2628
    @swarnavasamanta2628 3 года назад +20

    You are absolutely correct. C is the only language that i tried which does exactly what i want it to do and not anything more. That's why i love using it, i can just look at c code and tell what it will really do and how the code will compile. It is also a great language as it has no abstraction of the most basic tasks and you have to do them yourself instead of relying on the compiler. Other recent languages are good if you just want something done effortlessly but if you're a programmer or engineer i see no other reason to not use C. The language itself can teach you more about computers and hardware by making you do everything yourself.

    • @harleyspeedthrust4013
      @harleyspeedthrust4013 Год назад +4

      C is great for learning and hobby projects but there are real reasons not to use C in production software. The lack of a standard library means that you'll probably be implementing basic data structures yourself in your own quirky way (do we use void pointers? do we use macros to simulate specialization? etc.) The rest of the team will then have to learn your way of doing simple things. And that goes for everything in C - it seems like everyone who does C has their own style and their own convention. That's all overhead that other team members will have to learn to contribute to a C project. Other reasons not to use C for production:
      - Spending time implementing basic data structures and algorithms (that should be part of any other standard library) takes time away from building the actual product
      - Your custom data structures are much more likely to have bugs or be less efficient than battle-tested ones
      - You could use C++ instead and have language conventions and a standard library - plus most of the features from C

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

    Totally agree with all your points. I have a tendency of building everything from scratch but I get demotivated by anyone who hears this (generally). Highly motivated after this ❤

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

    Really cool stuff! I just started writing C, for fun I guess, after years of node.js and before that PHP. I love how simple it is! Everyone talks about the big scary memory management thing, but once I could visualize it, it makes a lot of sense. I’m going to have to rethink something I’m doing with doubly linked lists now, but the ideas of structs having a definite size and structure that’s usable, as well as the ideas of stride and “inheritance” makes something else that was going to become a quadruply linked list much easier and simpler I think! (I have to reason it out still, but this potentially makes my life a lot easier!) Also I love the debugging stuff with macros! Truly ingenious! So far I’ve just been using them to colorize printf output by prepending escape codes automatically xD Sorry for the long comment, but the video contained a lot of gold info to comment on as well!

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

      I'm in the same boat, long time JavaScript dev and I'm starting to code in C for fun in my spare time. The simplicity of the language is just so cool. I don't need to Google around for different frameworks that I need, I can just write them myself!

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

      @@christianbouwense4702 Have learned since I wrote that, that how I think is the best way to write something is often not very efficient in terms of code lines or memory/processor use, but that's learning xD
      Strings though... zomg.
      strtok is actually destructive and will litter your original string with NULLs. If you need to parse things but still need the original string, keep that in mind.
      You can create your own that uses a string buffer and string views (which track the starting and ending point in a struct rather than using null terminators, but keep in mind to convert it back to a string for any functions that require nul terminators or else implement string-view aware versions :)

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

      @@jmrumble Nice, thanks for the info! Yeah I'm still trying to get used to strings and arrays in general. One thing I'm trying to wrap my head around is: if you have a function that takes in an array, is it standard practice to always pass in the array size? Is there any time you can omit the size? And if not, what about strings? 🤔 Should you never assume they're null terminated in a function body?

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

    Currently working in unity, but i feel whatever you have to say will be worth for me to take notes off. 20 minutes into video so far and youre very well spoken especially since a noobie like me can get your point

  • @SealedKiller
    @SealedKiller 2 года назад +5

    I agree with everything. I always thought you should have control over memory. People make it sound like this scary thing, wow pointers! memory! so hard!
    I honestly realised how simple was memory while working with binary files. It's pretty much the same except certain sizes are padded to be properly aligned.
    Plus I wasn't even working with binary files in C but its so related that the realisation hit me in the moment.

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

    Another thing I have picked up from this video: long functions. I have always been taught to “abstract away” and “encapsulate” things and then it becomes an easter egg hunt to find the function within the function within the function! Having however One loop like you suggest that simply does things based on conditions/state and is very clear about that and reads top down like a story book is Sooooo much easier to read when coming back to later. The problem though is that though I like it, other people don’t…

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

      I absolutely wholeheartely disagree to the biggest extend.
      The analogy of a story book reading from front to back is sorry to say stupid. If you have a problem with your electric utensils do you want a manual with chapters and subchapters or a block of 200 pages starting in chinese? Finding a bug is not a story, its a specific line.
      Imagen this scenario. You have a 2D Game with a gigantic draw loop of 1000 lines of code.
      Lets say the drawing of one particular scenario has a bug.
      Do you want to a) read through 1000 lines of code, skimming over it ofc, but still 500 lines average.
      or b) Follow down a tree of smaller and smaller boxes to zoom down to your scenario? Your IDE is happy to help.
      One you skim over 500 lines, where the other you read and think about 10 lines of function names.
      Not convinced?
      You still have 1000 lines of code and the bug is super hard to find.
      Have fun testing one function of 1000 lines of code.
      Imagen the stacktrace.
      Bug happened at line 643 of function x.
      Instead of:
      Bug happed at line 13 of function x, called by function y, called by function a called by function f. Which for my example would be something like:
      DrawDoomEyeMonster , DrawFlyingMonster, DrawEnemies, DrawGame, Draw
      Another point, if someone is a bad programmer the difference between the one line someone hid by accident, is either 20 or 999 lines away.
      Whoever says big functions are easier to read is lying or super bad at naming functions.
      ---
      However every rule has its exceptions. If there is no reasonable way to split code, dont. Make sure every function is free of side effects.

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

      ​@@Schnorzel1337I disagree, strongly. A better example would be a malfunctioning drill that you need to repair. You open it up and troubleshoot the energy lines linearly from the power supply to the end tip. The simpler and the more straightforward the design of the drill, the easier to find where a broken trace or burned component may be. But if the drill has a bunch of smaller different units jumping off from each other it becomes increasingly difficult to see where the energy may flow and it becomes much more time consuming to find where the problem starts
      A procedural program is executed from start to end. A bug may start anywhere in that line and make itself manifest anywhere else beyond that point. Tracing that problem back is relatively easy of you have a straightforward block of code to step through. But if you have a backtrace of dozens of functions, tracking where it may start is much, much more time consuming. Especially for something like c, where silent but killer pointer bugs are everywhere
      I recommend checking out an article by John Carmack on inlined code (you can google it), he is a lot more terse in explaining why it's a good idea

  • @Carlos-kh5qu
    @Carlos-kh5qu Год назад +4

    recently I've been trying to do some bigger projects and i can affirm that without this video as a reference i would reach insanity before having a functioning build

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

    By 2016, fast inverse square root was substantially slower than hardware instructions like rsqrtss.
    A fantastic example of something else in the talk: don't be seduced by cleverness.

  • @migueld2456
    @migueld2456 4 года назад +7

    Your memory debugging thing is very neat. Reminds me of ASAN but simpler yet useful.

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

    I have exactly about 5 weeks coding with C. I hadn't coded in 8 years. I don't have much education but about 25 minutes into your video and I do most of the things you have said are good. Made me feel really good even though I really struggled with pointers. I'm doing C Primer Plus by Stephen Prata page by page. After it I'm doing a book that's only about pointers in C. It has good reviews so I hope after that I'll be a more or less decent C programmer. Very nice video though I don't agree with everything but I do enjoy getting to hear the reasoning behind your decisions.

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

      Don't get stuck in tutorial hell. Just code. Solve problems with C everyday. If you don't understand a concept well enough use ChatGPT and ask for exercises/projects using said concept and work through it. Only book I ever used was C Programming A Modern Approach 2nd Ed. Everything will just click eventually if you keep practicing.
      Also, google Aalto C MOOC and go through the content and try the exercises. University of Helsinki's MOOCs are amazing and offer certification as well. Got my Java I and Java II certs but I am by no means an expert.

  • @daon23
    @daon23 4 года назад +13

    How I program in C (As a begginer self taught coder):
    step 0: Write code
    step 1: Compile
    step 2: debug
    step 3: Compile
    step 4: run (yay!)
    step 5: Seg fault, and cry.

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

    ”good code is wide code” has been a game changer for me, as in not being afraid to have long variable names that are descriptive

  • @playerguy2
    @playerguy2 4 года назад +101

    Is your approach that because C++ has features that are easy to misuse you should just not use *any* of the features provided?
    the add() example would, for example, be an amazing candidate for templates, notice how that would be better, not worse.
    With regard to the multiplication example in C++, write better code! Someone writing ambiguous code is not a good argument for not using an entire language, it's an argument for better education.
    I don't think we should use C over C++ just because it has less features.
    C has it's place, but I don't think it's the same place as C++'s.

    • @konstantinrebrov675
      @konstantinrebrov675 4 года назад +15

      Just use selected features of C++ in your C code, and use a C++ compiler. You don't have to use all the features of C++, only use the ones that you want. Any good C++ compiler will accept valid C code.

    • @JNelson_
      @JNelson_ 4 года назад +9

      It's quite frustrating how fan boyish people get. There are useful features to both languages and both features can be abused easily enough. *cough* macros *cough*

    • @alextrotta796
      @alextrotta796 4 года назад +5

      I was thinking the same thing. I've heard the "easy to abuse" argument for operator overloading many times, but the problem is that people make intentionally misleading examples. I've written enough Java that I hate writing .add(...) when I really just want a +. That's exactly the time to use operator overloading, not to confuse things.

    • @gvcallen
      @gvcallen 4 года назад +6

      I as a C++ programmer kind of disagree with you and agree with his perspective. While I personally think using a C++ compiler with select features is the way to go, his overall argument seems to be that writing C code *forces* you to write good, rigorous, "non-clouded" code. Yes, with good programming practices and standards you will theoretically will never misuse any of the features provided, but to me it seems that isn't how it often happens in practice, with many libraries going down a completely unmanageable path because C++ made it easy for them. Again this is just how I see it, but I am a C++ programmer and love the language, so I don't really have a bias in the C direction when it comes to this

    • @homelessrobot
      @homelessrobot 4 года назад +3

      this is all fine and dandy until you actually have to cooperate with someone in c++ and you disagree about what's the good minimum subset. Now you don't even know the same programming language as other c++ programmers, and cannot cooperate. Well you can cooperate; just not in c++, but rather in the subset of c++ nearly everybody who programs in it knows/uses: c.

  • @Acuzzio
    @Acuzzio 2 года назад +2

    I loved the part where you talk about Acitectectiure. Presentation full of typos, but immensely useful. Thanks a lot. Great content.

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

      Maybe the presenter has dyslexia or something? He's pretty smart, but the only thing I disliked about all this was the amount of typos that I saw.

  • @montenegro3167
    @montenegro3167 4 года назад +3

    I love your religious beliefs. it sure makes life easy for the most part when programming in C.

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

      These are philosophical beliefs, not religious ones. Philosophy is shaped by reason, whereas faith is not.

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

    Thank you for the video! Lots of useful tips. In the example at 1:50:00 (one malloc for two different structs), you could create a struct Dummy { MyStructA a; MyStructB b; }, and then: a = malloc(sizeof(Dummy)); b = ((Dummy*)a)->b; So the Dummy struct gives you the correct layout of the two in memory, and the total size needed for both.

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

      Yes. The advantage of stacking many structs after each other is that you dont need to pre define the container struct. This is usefull if you have lots of different structs you want t store in any order.

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

      @@eskilsteenberg Ah, yes I can see that you wouldn't want to define the container struct if there are many different structs. Thanks for your reply.

  • @Nawarian
    @Nawarian 3 года назад +6

    I can't even express how much this video helped me grasping SO MANY concepts that I simply couldn't. I no longer program by C coincidence. Thank you!

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

    I appreciate you sharing your philosophy and methods, even if I don't aggree with everything I enjoyed seeing a different perspective.

  • @sidekick3rida
    @sidekick3rida 5 лет назад +37

    Probably the best C video I've seen. Definitely a goldmine. I think C is the greatest, also. I share most of these sentiments! Great stuff, thanks for sharing, learned a ton!

    • @eskilsteenberg
      @eskilsteenberg  5 лет назад +6

      Thank you very much. I'm glad you liked it!

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

    Object oriented paradigm indeed, the individuals who dreamed up this interpretation of organizing instructions/data to feed to a CPU probably thought that they were very clever to have conceptualized programming in this way. Because they call it more realistic we see a reflection of the fallacy of their thoughts, I wonder what they were smoking. No, more realistic is to comprehend that the computer memory and CPU are the objects, procedures and the data you feed to them are objectified by the magnetic and electronic pulses that are the substance of their reality. Realistically. The inheritance, polymorphism, other "features" of the object oriented organization scheme are entirely superfluous.
    Also, very good stuff here. Very well made. Glad that I stumbled into your realm here.

  • @Xbox360SlimFan
    @Xbox360SlimFan 4 года назад +3

    I like operator overloading a lot though. If you know the math, you know what's going on.
    He picked a good example though, because once we overload operator* to be a scalar product between two vector types, we can't overload it for pairwise multiplication anymore. On top of that, one can easily overlook that we are getting a vector type result, so we are not performing the "obvious" looking scalar product as you pointed out.
    However, operator overloading allows to write formulas more mathematically. When solving tensor like partial differential equation like in fluid dynamics or general relativity, it is very helpful to write the occurring (Matrix x Matrix) and (Matrix x Vector) operations with their corresponding mathematical operator or a static function (ex. mat3f::tensorProduct(T1, T2)).

    • @SerBallister
      @SerBallister 4 года назад +1

      vector classes work really well with overloading. The problem is when programmers use arithmetic operators on none mathematical objects. I've worked on codebases where operators like ~ are used for collection sizes and other none-obvious operation, as an example.

  • @AdolphusOfBlood
    @AdolphusOfBlood 3 года назад

    Seeing the hang ups that result from this being five years old really shows me how far we have come in 5 years.

  • @fredg8328
    @fredg8328 2 года назад +22

    Nobody overloads the multiplication with vectors. Every math lib I saw uses explicit names: dot, cross, scale. The * operator is sometimes used to multiply a vector by a scalar (uniform scale) but that's all. C++ programmers are less dumb that you think.

    • @h.cazador
      @h.cazador 3 месяца назад +1

      if i program in C, will my wife come back?

  • @_roman420_old_acc2
    @_roman420_old_acc2 4 года назад +40

    "The compiler is really useful when it comes to telling you errors"
    .NET: General error in GDI+

    • @konstantinrebrov675
      @konstantinrebrov675 4 года назад +1

      Have you ever used Rust compiler before?

    • @nextlifeonearth
      @nextlifeonearth 4 года назад

      @@konstantinrebrov675 it tells you what's wrong really well, but it's very naggy. Idgaf what the lifetime is, just let me return the i32.

    • @arvinderdhanoa6634
      @arvinderdhanoa6634 4 года назад +2

      I mean it's naggy because it tries to catch every error at compile time. Lifetimes let you communicate how long a variable lives - and if your fighting with lifetimes the compiler has found a case where your annotated lifetimes are wrong and your code couldn't functionally work according to them. E.G. you have a reference to invalid memory.
      C would just spit whatever random thing is in that memory location.
      Without that nagginess rust would let you compile invalid code, which negates the reason for it's existence.

    • @nextlifeonearth
      @nextlifeonearth 4 года назад

      @@arvinderdhanoa6634 I know for a fact the C code would have worked. The rust compiler just doesn't.

    • @arvinderdhanoa6634
      @arvinderdhanoa6634 4 года назад

      @@nextlifeonearth code example? There are cases with NLL where lifetimes aren't perfect but for day to day use it works fairly well.