C Programming Tutorial 19 - Intro to Data Types - Part 1

  Рет қаралды 52,860

Caleb Curry

Caleb Curry

Күн бұрын

Пікірлер: 41
@codebreakthrough
@codebreakthrough 6 жыл бұрын
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
@nicoleerickson2556
@nicoleerickson2556 5 жыл бұрын
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!
@Infinitay
@Infinitay 6 жыл бұрын
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 :)
@anthonyhead3698
@anthonyhead3698 5 жыл бұрын
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 :)
@danielakinwalere6196
@danielakinwalere6196 2 жыл бұрын
I am learning c at the moment and this is the best channel on the tube. thanks for all you do.
@apetitetour8365
@apetitetour8365 4 жыл бұрын
Thank you, it definitely gives me a beginner some basic knowledge about it. It's quite enjoyable to watch too
@nedmartinez-zavala9176
@nedmartinez-zavala9176 7 жыл бұрын
Awesome! Will you be going over pointers?
@gloriousdude6888
@gloriousdude6888 5 жыл бұрын
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!
@fivesix3868
@fivesix3868 6 жыл бұрын
youre awesome dude hope your life is going well, congratulations on acquiring a job!
@Andyruuuu
@Andyruuuu 4 жыл бұрын
This was very helpful, thank you. I love your teaching style.
@Stirner219
@Stirner219 7 жыл бұрын
Dude, great stuff - get the simply stuff down, then the harder stuff will reveal itself.
@lindajaracuaro8571
@lindajaracuaro8571 4 жыл бұрын
Oh Caleb, I just love the way you explain
@PunmasterSTP
@PunmasterSTP 3 жыл бұрын
Data? More like heck yeah! Thanks again so much for making these wonderful tutorial series!
@ElHeloint
@ElHeloint 2 жыл бұрын
Love you, you beautiful creature. Sincerely, A lost soul who sleeps on classes and learns from youtube at night.
@prashanttamang9940
@prashanttamang9940 5 жыл бұрын
Simple and clear is your explanation!
@SrtaNatyOliveira
@SrtaNatyOliveira 4 жыл бұрын
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
@samanthawu1637 Жыл бұрын
Thank you that was so informative 👍🏻
@God-dw1gq
@God-dw1gq 2 жыл бұрын
which word did you use that we should've known?
@benjaminnyirenda7336
@benjaminnyirenda7336 2 жыл бұрын
thanks for making things easier for me, i just cant get through to ur pdf notes can you please fix that?
@muhammadshahzaibanwar9302
@muhammadshahzaibanwar9302 3 жыл бұрын
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.
@sebastianilienescu9303
@sebastianilienescu9303 5 жыл бұрын
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
@housemajaliwa Жыл бұрын
I'm just binging these now
@omiddavami8706
@omiddavami8706 6 жыл бұрын
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?
@angelbuffer6115
@angelbuffer6115 2 жыл бұрын
Best teacher
@pete2737
@pete2737 Жыл бұрын
I'm not able to download your notes. 404 error. How do i get it?
@benjaminn412
@benjaminn412 4 жыл бұрын
Hi, what is this type of data type? R72
@bryseb9194
@bryseb9194 4 жыл бұрын
you are great !!
@Soloisbac
@Soloisbac 6 жыл бұрын
Top ten anime boss fights
@abhishekprabakar2775
@abhishekprabakar2775 4 жыл бұрын
0:42
@ahmadal-tarabeen9253
@ahmadal-tarabeen9253 3 жыл бұрын
You should be an actor.
@londonsystem6622
@londonsystem6622 4 жыл бұрын
The Best
@all4mix283
@all4mix283 6 жыл бұрын
Upload all concep c programming please
@PeculiarJake
@PeculiarJake 6 жыл бұрын
hey Caleb the notes are not working
@janeodum5884
@janeodum5884 5 жыл бұрын
your face looks familiar
@rittenbrake1613
@rittenbrake1613 5 жыл бұрын
Peace !
@knight024
@knight024 7 жыл бұрын
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.
@codebreakthrough
@codebreakthrough 7 жыл бұрын
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. 🙂
@AndrewTSq
@AndrewTSq 4 жыл бұрын
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.
@JAdamsJr77
@JAdamsJr77 7 жыл бұрын
Wow!!! Cool🙄
@fawesomekila
@fawesomekila 5 жыл бұрын
I hate programming but you are cute
C Programming Tutorial 20 - Intro to Data Types - Part 2
6:03
Caleb Curry
Рет қаралды 32 М.
the TRUTH about C++ (is it worth your time?)
3:17
Low Level
Рет қаралды 814 М.
«Жат бауыр» телехикаясы І 30 - бөлім | Соңғы бөлім
52:59
Qazaqstan TV / Қазақстан Ұлттық Арнасы
Рет қаралды 340 М.
Caleb Pressley Shows TSA How It’s Done
0:28
Barstool Sports
Рет қаралды 60 МЛН
Why TRUE + TRUE = 2: Data Types
8:08
Tom Scott
Рет қаралды 1 МЛН
C data types 📊
11:08
Bro Code
Рет қаралды 92 М.
5 Math Skills Every Programmer Needs
9:08
Sahil & Sarra
Рет қаралды 1,1 МЛН
Primitives Data Types In Java - All the Primitives And What They Do
10:24
I Helped 2,000 People Walk Again
15:31
MrBeast
Рет қаралды 12 МЛН
Пластмассовый мир Хуанга | Разбор DLSS 4 и Nvidia RTX 50
25:01
you will never ask about pointers again after watching this video
8:03
Dr. Chuck reads C Programming (the classic book by Kernigan and Ritchie)
9:38:35
C in 100 Seconds
2:25
Fireship
Рет қаралды 3,2 МЛН