How I program C

Поделиться
HTML-код
  • Опубликовано: 20 ноя 2016
  • This is a talk I (@eskilsteenberg) gave in Seattle in October of 2016. I cover my way of programing C, the style and structure I use and some tips and tricks. Fair warning: There is a fair bit of Programming religion in this talk.
    My projects can be found at www.quelsolaar.com
    My source can be found at: www.gamepipeline.org
    On twitter i am: @eskilsteenberg // private
    and: @quelsolaar // work.
  • РазвлеченияРазвлечения

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

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

    "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 Год назад +39

      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 Год назад +13

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

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

      @@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)

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

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

      what does he mean control

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

    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 Год назад +14

      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 Год назад +5

      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 Год назад +5

      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.

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

    The only thing better than C is HolyC

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

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

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

      When will C99 be old enough though lol

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

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

  • @mannycalavera121
    @mannycalavera121 3 года назад +343

    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!

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

    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.

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

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

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

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

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

    "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 года назад +25

      that js snippet would set x to undefined, not zero

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

      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 года назад +11

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

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

      @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?

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

    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.

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

    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!

  • @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.

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

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

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

      Disappointment he uses Visual Studio

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

      @@bjarnestronstrup9122 lol you expected vim?

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

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

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

      @@bjarnestronstrup9122 nano is love nano is life

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

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

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

    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.

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

    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.

  • @Seacle14
    @Seacle14 Месяц назад +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.

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

    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 6 месяцев назад

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

  • @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.

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

    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!

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

    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 года назад +38

      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! :)

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

    pretty dissapointing video, no indian accent

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

      I WANNA SEE JOMBO 😭

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

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

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

      A coding tutorial without honking cars in the background.

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

      ... 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.

  • @MoveTrueRecords_
    @MoveTrueRecords_ 10 месяцев назад +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 ❤

  • @its0xFUL
    @its0xFUL 8 месяцев назад +3

    Keep coming back to this video. Such a gem.

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

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

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

      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 года назад +41

      @@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

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

    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 Год назад +4

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

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

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

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

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

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

    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 года назад +7

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

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

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

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

      @@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 9 месяцев назад

      😂😂@@Julian-mc3tc

  • @JA-in3hw
    @JA-in3hw Год назад +4

    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.

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

    I absolutely love this so much, thank you!!

  • @adamrexrode789
    @adamrexrode789 2 года назад +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.

  • @jtw-r
    @jtw-r 8 месяцев назад +11

    “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 Месяц назад

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

  • @13romor
    @13romor 8 месяцев назад +7

    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 :)

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

    "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 года назад +7

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

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

      "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.

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

      @@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 года назад +7

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

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

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

  • @mrglick5050
    @mrglick5050 2 месяца назад +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!

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

    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 года назад +30

      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 года назад +9

      @@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 года назад +5

      @@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!

  • @radman999
    @radman999 7 месяцев назад +4

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

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

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

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

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

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

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

  • @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. ☺️

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

    This is a fantastic talk, and got me excited about programming in C again!

  • @grimvian
    @grimvian 10 дней назад +1

    This video was the foundation and the knowledge I got to write a small relational database including a graphical interface. The database have tables, queries, forms, reports on screen and paper and editing facilities - Thanks Eskild.
    Now two years in my C journey and I feel somewhat confident in C, but I clearly know who the C master is!

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

    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 Год назад +5

      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.

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

    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

    • @user-ns7zx7hi3p
      @user-ns7zx7hi3p 8 месяцев назад

      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.

  • @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 ❤

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

    I haven't written a single line of C, but this was incredibly insightful for programming in general. thanks for the awesome presentation!

  • @ratchet1freak
    @ratchet1freak 7 лет назад +103

    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 лет назад

      What🤔🤔🤔🤔🤔🤔

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

      Makes sense

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

      interesting!

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

      You are a crazy mathematician!

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

      @@ekremdincel1505 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.)

  • @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

  • @ipeprotoipe9122
    @ipeprotoipe9122 7 лет назад +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.

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

    Great talk! So many useful advices for C programmers. Love it!

  • @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!

  • @g0d182
    @g0d182 8 месяцев назад +3

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

  • @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.

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

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

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

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

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

    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

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

    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  Год назад +1

      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 Год назад +1

      ​@@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 9 месяцев назад +1

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

  • @seanmccrary8300
    @seanmccrary8300 3 месяца назад +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.

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

    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 лет назад +22

      project managers hate it, not programmers

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

      @Abigail Jones Link for the debugger?

    • @Muck-qy2oo
      @Muck-qy2oo 4 года назад

      @@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 года назад +8

      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.

  • @volo7380
    @volo7380 7 лет назад +4

    23:28 code indexers are great, they accurately show all uses of a language symbol regardless of formatting (and build call hierarchies for all occurrences). And they show if the use at that place is read-only/write-only/read-write. Maybe use them...

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

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

  • @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.

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

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

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

    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 года назад +7

      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 3 года назад +4

      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 3 года назад +5

      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 3 года назад +2

      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.

  • @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

  • @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.

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

    Fantastic tips all these years later! Thank you, Eskil ... much appreciated!

  • @Humble_Electronic_Musician
    @Humble_Electronic_Musician 7 месяцев назад +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

  • @CaptainTechnicalityLP
    @CaptainTechnicalityLP 6 месяцев назад +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.

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

    This talk was very interesting, I learned some important concepts about memory with it.

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

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

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

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

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

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

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

      @@nextlifeonearth Exactly

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

      @@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

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

    i would be interested to hear your opinions on Rust, as i think it makes a good effort to mitigate and even solve many of the problems you reference in non-c languages, while providing the cushy high-level interface many love.

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

    Thank you so much for this, I'm trying to write better C code for my Parallel Programming classes. This has helped me tremendously

  • @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 8 месяцев назад +5

      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 7 месяцев назад

      ​@@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

  • @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 11 месяцев назад +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 11 месяцев назад +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 11 месяцев назад

      @@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?

  • @douglaseleveld2707
    @douglaseleveld2707 7 лет назад +47

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

    • @eskilsteenberg
      @eskilsteenberg  7 лет назад +35

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

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

      Best comment ever.

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

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

  • @Leon-yi3of
    @Leon-yi3of 4 года назад

    I started learning C a week ago or so, and this video is kind of a god sent. I feel like C is super interesting.

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

    I love your coding philosiphy. Thank you, I am grateful

  • @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.

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

    What book did learn all this stuff in C ? I program in C (in college and for fun) for about a year... And i was impressed; not even by far i know as much as you do. Congratulations, you were able to inspired me to learn a lot more about C!

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

      I learned the basics of C from a book called "A book on C". But really I'm mostly self taught. Over the years i have found a lot of tricks and since i couldn't find a good collection of tricks like these i decided to make this video. I am (slowly) working on something that may turn in to a book about programing practices.

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

      @@eskilsteenberg Great.
      Thanks for answer me and good luck with your book !
      Greetings from Brazil!

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

      @@eskilsteenberg A book I'll buy for sure. You're an awesome programmer

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

      ​@eskilsteenberg I have the same book and I love it!

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

    really nice vid man, many things I agree with and disagree with but still really nice content about a good style of programming, thanks to you, I realized I can make my style even better in consideration of the nice ideas you've showed me in the video. thank you, man!
    much respect!

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

      Thanks for watching! That's what I want, take the good bits you like and then develop your own style on top of it!

  • @GackFinder
    @GackFinder 2 дня назад

    For some reason I love that your presentation slides are C files with comments in them.

  • @hasen1957
    @hasen1957 7 лет назад +6

    12:50 but which parameters are inputs and which are outputs? Is it also "just clear"?

    • @perplexedmoth
      @perplexedmoth 6 лет назад +3

      Yes, it is pretty much a convention to put the "dest" in the first parameter (check all standard C library functions). The reason for that I believe is because dest is treated as an L-value.
      Also you could have your own convention differently, as long as it's consistent across a given codebase.

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

    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. 😅

  • @20dareason09
    @20dareason09 2 года назад +1

    "Build a mountain!" This resonates with me. Thanks for creating this video!

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

    Loved the video, had a lot of fun listening to how you like C for the same reasons I do. C is brilliant!

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

      Thank you so much!

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

      @@eskilsteenberg Eskil, the way you get dyslexic ( in a lighthearted way) with spellings , I get very dyslexic (in frustrating ways) with loop counters a LOT ... Would you have any helpful suggestions since you seem to have quite the experience with programming?

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

    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.

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

    About spacing. Usually text searchers support regular expressions, so you can type \b at the end of function name, and also at the beginning, it means edge of the word, word is sequence of alphabetic symbols and underscore, so it doesn't matter is there space, bracket or even end of file

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

    this is so great. I'm not about to go tell everyone to start using C, but I have a lot of ammo now on why it's not so bad.

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

    Programmed for 12 years in C++ then switched back to C cause the syntax is just much simpler and you can really do the same like in C++ just with a little bit more self discipline. C is really the best programming language imho.

  • @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.

  • @banana-breakfast
    @banana-breakfast 4 года назад +3

    Do you know about tagged unions? I use those a lot instead of declaring for each type struct{ MyHeader header; ... }; when I want all of them to be the same size and keep things more simple

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

      You can also use inheritance for structs in C++.. struct MyStructWithHeader : MyHeader { int otherStuff.. }; This being better than using a composite class because you can cast MyStructWithHeader to MyHeader and expose it to functions that only care about MyHeader's

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

    The memory debugging utilities are a fantastic idea!

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

    Great video. I like the blunt honesty and useful information.

  • @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

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

    1:41:30 Important to notice that this doesn't work when the_one_we_want_to_remove does not exist in the array

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

    12:30 in GLSL/Intel/Clang/GCC vector extensions it means pairwise multiplication. So sqrt(sum(v*v)) would be the vector's length. Pairwise multiplication makes more sense, since it is just an extension of 1d multiplication to higher dimensions. Lets hope this definition sticks, and further C versions will support it out of the box.

  • @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.