Learn Javascript - bit.ly/JavaScriptPlaylist Learn Java - bit.ly/JavaPlaylist Learn C# - bit.ly/CSharpTutorialsPlaylist Learn C++ - bit.ly/CPlusPlusPlaylist Learn C - bit.ly/CTutorialsPlaylist
@nicoleerickson25565 жыл бұрын
I am taking comp. prog. C class in college and your videos are SAVING ME! You explain things thoroughly and with a little humor to boot! I learn and laugh at the same time! Thank you so much for all of your hard work and effort. You should REALLY consider being an instructor at a university!
@Infinitay6 жыл бұрын
Found your channel while trying to learn more about C and so far you've been very helpful. Least I can do is comment letting you know how you're helping me and many other people out :)
@anthonyhead36985 жыл бұрын
Solid tutorial, brother! As a professional web dev, I'm having a lot of fun going through your courses and learning C for the first time :)
@danielakinwalere61962 жыл бұрын
I am learning c at the moment and this is the best channel on the tube. thanks for all you do.
@apetitetour83654 жыл бұрын
Thank you, it definitely gives me a beginner some basic knowledge about it. It's quite enjoyable to watch too
@nedmartinez-zavala91767 жыл бұрын
Awesome! Will you be going over pointers?
@gloriousdude68885 жыл бұрын
Thank you a lot sir for making these such GREAT, ENTHUSIASTIC, INTERESTING, HELPFUL, CLEAR and EASY TO UNDERSTAND and professional Programming Tutorial videos for everyone. As a very beginner, your videos had helped and taught me a lot! THANK YOU! KEEP IT UP SIR!
@fivesix38686 жыл бұрын
youre awesome dude hope your life is going well, congratulations on acquiring a job!
@Andyruuuu4 жыл бұрын
This was very helpful, thank you. I love your teaching style.
@Stirner2197 жыл бұрын
Dude, great stuff - get the simply stuff down, then the harder stuff will reveal itself.
@lindajaracuaro85714 жыл бұрын
Oh Caleb, I just love the way you explain
@PunmasterSTP3 жыл бұрын
Data? More like heck yeah! Thanks again so much for making these wonderful tutorial series!
@ElHeloint2 жыл бұрын
Love you, you beautiful creature. Sincerely, A lost soul who sleeps on classes and learns from youtube at night.
@prashanttamang99405 жыл бұрын
Simple and clear is your explanation!
@SrtaNatyOliveira4 жыл бұрын
0:27 By the way an individual data is called a datum. But I personally think that word sounds DUMB so I'm not gonna use it 🤣🤣🤣🤣🤣🤣🤣
@samanthawu1637 Жыл бұрын
Thank you that was so informative 👍🏻
@God-dw1gq2 жыл бұрын
which word did you use that we should've known?
@benjaminnyirenda73362 жыл бұрын
thanks for making things easier for me, i just cant get through to ur pdf notes can you please fix that?
@muhammadshahzaibanwar93023 жыл бұрын
did you not confuse primitive with scalar data type. Scalar data type means "basic building block (boolean, integer, float, char etc.)" A primitive is typically used to represent a ‘value type’ (e.g. pass-by-value semantics) and this contrasts with ‘reference types’ (e.g. pass-by-reference semantics). for example in javascript string is primitive but it is not basic at all it is composite data type made of char scalars and has an array data structure.
@sebastianilienescu93035 жыл бұрын
Hey, Caleb! I've tried to download your notes but I am not able to do it, not even once, can tou send it to me? Or to gelp me get it from the website?
@housemajaliwa Жыл бұрын
I'm just binging these now
@omiddavami87066 жыл бұрын
Hey Caleb. Thank you so much for your great videos. I wanted to download your notes but I think the link that I received via Email to confirm and get the notes is corrupted since it does not work! Would you please check it again and let me know the result, please?
@angelbuffer61152 жыл бұрын
Best teacher
@pete2737 Жыл бұрын
I'm not able to download your notes. 404 error. How do i get it?
@benjaminn4124 жыл бұрын
Hi, what is this type of data type? R72
@bryseb91944 жыл бұрын
you are great !!
@Soloisbac6 жыл бұрын
Top ten anime boss fights
@abhishekprabakar27754 жыл бұрын
0:42
@ahmadal-tarabeen92533 жыл бұрын
You should be an actor.
@londonsystem66224 жыл бұрын
The Best
@all4mix2836 жыл бұрын
Upload all concep c programming please
@PeculiarJake6 жыл бұрын
hey Caleb the notes are not working
@janeodum58845 жыл бұрын
your face looks familiar
@rittenbrake16135 жыл бұрын
Peace !
@knight0247 жыл бұрын
Great tutorial, just be careful with the use of the word 'atomic' - which by your definition is derived from primitive types which is incorrect depending on the environment and operations being done. Atomic is used when dealing with race condition environments (multi-threaded usually) when you do read -> evaluate -> update -> sync to disk for example. You would want operations around the critical piece of code atomic to prevent values in the cpu register to be volatile to change between two operations (usually read - update - write structure). TL;DR - Atomic operation means an operation that appears to be instantaneous from the perspective of all other threads. You don't need to worry about a partly complete operation when the guarantee applies when using atomic processed.
@codebreakthrough7 жыл бұрын
Thank you! I'm glad you enjoyed the video. I believe context may be the issue here. The term atomic that I am using... in not referring to the process of changing the data or writing the data, but rather the amount of data. The primitive data types are atomic in the sense that they contain only one piece of data. They are not atomic in the sense that you don't need to enforce mutual exclusion. So, yes, you are correct, but I also believe the word atomic can be used correctly when it comes to data management and the different types of data. This really comes from my database background. I hope what I'm saying makes sense and that it is clear that I do agree with what you are saying when it comes to multithreading. If you believe I still have an incorrect definition, please elaborate. 🙂
@AndrewTSq4 жыл бұрын
Its the datatypes of C that makes me really dislike this language. oh its a byte? no its a char.. no its s char array? but can I print it with serial.println? yes.. oh.. so a compare with a string NO.. thats not possible.. wtf :P usally its like 9 hours searching for a way to convert from one to the other, and half of the threads you find there are people who just writes "You cant write it like that" instead of answering how you should write it.. ah .. I remember when you programmed assembler back in the early 80ies, that was peaceful.