Coding Game of Life in C from Scratch | Cell Simulation Rules | Ep. 3

แชร์
ฝัง
  • เผยแพร่เมื่อ 6 ม.ค. 2025

ความคิดเห็น • 14

  • @karthikeyanloganathan2964
    @karthikeyanloganathan2964 หลายเดือนก่อน +6

    C? a program in C? man I'm already frustrated with c++ and you're coding a game in C. Kudos to you!

    • @HirschDaniel
      @HirschDaniel  หลายเดือนก่อน +7

      I honestly think C is much simpler than C++. I don't dare to touch C++ at this point, haha

    • @Bl0xxy
      @Bl0xxy หลายเดือนก่อน

      "Already frustrated with C++"
      TRUST ME, C++ is WAY harder than C. C will make you feel happy, C++ will make you feel depression

    • @totheunknownigo9550
      @totheunknownigo9550 หลายเดือนก่อน

      I totally agree with you but i hate the fact that c is limited​@@HirschDaniel

  • @k1lld4t4q
    @k1lld4t4q หลายเดือนก่อน +1

    Hey, Daniel! I wanted to say thank you for your work. Thanks to this project I have understood a lot of C language concepts. Very happy to see that for these 3 episodes we have a working simulation of Game of Life. Since I am new to C I am trying to replicate the logic of your code but with my own implementation. I will be waiting for more of your C projects. Good luck!

  • @Tetrakatsuki
    @Tetrakatsuki หลายเดือนก่อน +1

    What a roller coster this is. rooting for you to realise you are updating the current array as you go and not passing the whole thing and then producing the output. Still got 40 minutes to go, you can do it !

    • @Tetrakatsuki
      @Tetrakatsuki หลายเดือนก่อน +1

      Ah GPT caught it for you, i did a similar exercise when i was learning JS and it took me ages

    • @HirschDaniel
      @HirschDaniel  หลายเดือนก่อน +1

      Without GPT this would've cost me many hours. But awesome you caught it so early!

  • @Kl0Wn287
    @Kl0Wn287 หลายเดือนก่อน +2

    Just keep it up im doing similar thing too so its cool to see more C programmers

  • @BiswadeepDev
    @BiswadeepDev 5 วันที่ผ่านมา

    very frustrating and yet so very fun to watch.

  • @scarysticks66
    @scarysticks66 19 วันที่ผ่านมา

    why dont you use headers? it would make the project simplier

    • @HirschDaniel
      @HirschDaniel  19 วันที่ผ่านมา

      do you have an example? what headers do you mean?

    • @scarysticks66
      @scarysticks66 19 วันที่ผ่านมา

      @HirschDaniel i mean like having the definition of the grid and window function on a grid.h and so on with the logic of the game

    • @HirschDaniel
      @HirschDaniel  19 วันที่ผ่านมา

      @@scarysticks66 That wouldn't make the project simpler. It would still require the same code, but now distributed among multiple files instead of just one