C Programming - Part 1 - Zero to Neural Networks

Поділитися
Вставка
  • Опубліковано 27 сер 2024
  • C Programming Tutorial. Part 1. Zero to Nerual Networks.
    In this series we will learn C Programming from scratch all the way to programming neural networks

КОМЕНТАРІ • 38

  • @anthonygonzalez7383
    @anthonygonzalez7383 Рік тому +7

    This is going to be my first programming language. I’m excited to follow this series!!!

  • @TheJunkmailbot
    @TheJunkmailbot Рік тому +7

    This is awesome. Really cool concept for a learning series, and using Linux every day C is big up there on my to-do list of languages to properly learn.
    Saving this for a time when I’m not totally burned out juggling studies and full-time work.

  • @arturabelian1855
    @arturabelian1855 9 місяців тому +2

    I started learning C. I’m still reading Kernian. I really like the language and have wanted to learn it for a long time. Thank you for such videos! I'm just delighted!

  • @littlecurrybread
    @littlecurrybread 10 місяців тому +3

    loving see more C on youtube, subbed!

  • @jinnzhu768
    @jinnzhu768 10 місяців тому +3

    Thanks for the nice lecture, would you please create a playlist for the videos? Thank you

  • @zakoffline3017
    @zakoffline3017 11 місяців тому +3

    So exited for more vids, and i hope i never need python for any ai, i believe in C supremacy 😂😂

  • @daldebdaldeb9359
    @daldebdaldeb9359 10 місяців тому +2

    You have an amazing spirit don't ya 🤣, no seriously it is really entertaining to listen to you and also a great source of learning, thank you, subed and will watch ur videos pal

  • @OCEAN-fc9wl
    @OCEAN-fc9wl 7 місяців тому +1

    I like listening to this guy

  • @grant5941
    @grant5941 2 місяці тому

    Thank you for making this series!!

  • @globalhell5046
    @globalhell5046 Рік тому +1

    Excellent series! I will return to these videos

  • @jfndfiunskj5299
    @jfndfiunskj5299 10 місяців тому +2

    This is great stuff.

  • @Sami_K99
    @Sami_K99 10 місяців тому +1

    Great series, i plan to code along. Thank you very much!

  • @deontawilliams3131
    @deontawilliams3131 Рік тому +3

    Been programming a little while bout 7 months , I can say your helping us become the next Dennis Ritchie🤣!

  • @iainpendreich1760
    @iainpendreich1760 Рік тому +1

    Wow, just what I was looking for!

  • @varshneydevansh
    @varshneydevansh 11 місяців тому +2

    make a playlist

  • @amanullahmenjli
    @amanullahmenjli 5 місяців тому

    This channel is a great discovery!

  • @steafansteinocher462
    @steafansteinocher462 10 місяців тому +1

    3 min in, youre awesome

  • @nobu1730
    @nobu1730 3 місяці тому

    thank you for making this 🙏🏼

  • @MetaphoricalResistance
    @MetaphoricalResistance 11 місяців тому +2

    It's funny style of explanation 😃

  • @GauravPalariya-ig6ps
    @GauravPalariya-ig6ps 15 днів тому

    thank you

  • @oglala_lakota2o
    @oglala_lakota2o 10 місяців тому +1

    This is precisely what I need! I can code in python, R and bash scripting for bioinformatics but C and C++ would be better for the big data analysis I do on genomes

    • @Kosake82
      @Kosake82 10 місяців тому +3

      I suggest to look into Julia. This programming language was specifically designed with data analysis in mind and academic use in general and it is as fast as C.

    • @oglala_lakota2o
      @oglala_lakota2o 10 місяців тому

      @@Kosake82 yea i i havent tried julia yet but i want to consolidate steps in genome assembly with rust or next flow but i know mostly everyone use python for scripting

  • @ahmadawadallah5321
    @ahmadawadallah5321 Рік тому +1

    This is awesome! Thank you for doing this!

  • @usurpvision
    @usurpvision 5 місяців тому

    I need this

  • @datmanjay420
    @datmanjay420 10 місяців тому

    Cool series.

  • @user-cd3ky2po1j
    @user-cd3ky2po1j Рік тому

    Thank you

  • @oglala_lakota2o
    @oglala_lakota2o 10 місяців тому +1

    Will the Main function always be placed on the stacked first regardless of its placement in the code?

    • @datacorelinux
      @datacorelinux  10 місяців тому +3

      Yes, program execution begins at the main function. The main() function is the entry point.

    • @oglala_lakota2o
      @oglala_lakota2o 10 місяців тому +1

      @@datacorelinux thank you!

  • @nicholasmaniccia1005
    @nicholasmaniccia1005 Місяць тому +1

    Thank you for spreading your knowledge.
    I put these in a playlist chronologically for anyone else who prefers to use one to follow the series. ua-cam.com/play/PLSYwGuZJP09vktjgpSX6Y5r7PBIoW6Im-.html&si=dkeMWUHpIysxHsAI

  • @PeterJepson123
    @PeterJepson123 Рік тому

    C2NN

  • @garakchy
    @garakchy Рік тому

    21:51 Not every function returns, sir. Void() for example.

    • @datacorelinux
      @datacorelinux  Рік тому +14

      A 'int function' returns to a calling function an int value. A 'void function' returns to a calling function no value. But it does indeed return.

    • @Sami_K99
      @Sami_K99 10 місяців тому +1

      @@datacorelinux Well said!