C Programming Crash Course all-in-one Tutorial (3 HOURS!)

  Рет қаралды 154,800

Caleb Curry

Caleb Curry

Күн бұрын

Пікірлер: 165
@codebreakthrough
@codebreakthrough 4 жыл бұрын
notes - calcur.tech/notes-c-programming C Programming Crash Course - www.learn.calebcurry.com/p/c-programming-crash-course Timestamps: 1:13 - Intro 7:15 - Linux 17:20 - Basics - Input and Output 33:09 - Variables and Data Types 49:32 - Operators 1:03:13 - Logic (If, Switch, Ternary) 1:19:35 - Loops (for, While, Do While) 1:31:50 - Arrays 1:41:44 - Strings 1:50:00 - Functions 2:07:58 - Creating a Function Library 2:15:55 - Intro to Pointers 2:25:17 - Intro to Structs 2:34:07 - Intro to Memory Management 2:51:16 - Conclusion
@40_sn43
@40_sn43 3 жыл бұрын
Pretty goood 😄😊course to regain confidence in C Programming and getting started for more, thank you for such a Humanly beautiful and humorous C course and do create and 'intermediate C crash course' so that after learning from this we could go there and learn more👍😁. This helped me revise so much, Thank you 😄🎇❣
@PJSCode
@PJSCode 3 жыл бұрын
Thankyou dude I really appreciate it, I already subbed to you and gonna check out your other videos. o7
@triambakeshwar8766
@triambakeshwar8766 3 жыл бұрын
You know, if you attach the timestamps to the description of the video, then KZbin would show different chapters at the side in a panel and also show the current playing chapter beside the volume bar in the video. Just my suggestion.
@kadejaxx701
@kadejaxx701 3 жыл бұрын
i guess it's kinda off topic but does anyone know a good place to watch new series online?
@ymous7051
@ymous7051 3 жыл бұрын
WE LOVEEEEEEEEEEEEEEEEEEEE you soooooooooooo much sir, you're the best teacher in the world and the most professional one😂
@michalguy
@michalguy 4 жыл бұрын
Honestly this is the most human and fun programming tutorial I've seen in my LIFE. I'd love to see more tutorials from you!
@alesgabor7606
@alesgabor7606 4 жыл бұрын
Má 10hodinovú verziu 😂😂👌
@dambros
@dambros 5 жыл бұрын
Please do the intermediate C course! You are a great teacher, congrats!
@SG1980s
@SG1980s 5 жыл бұрын
I hadn't programmed in C in quite some time and was looking for a quick refresher course. This was PERFECT! Thank you Caleb!
@alexnezhynsky9707
@alexnezhynsky9707 5 жыл бұрын
02:08:53 Please do create an intermediate C series! Awesome work, keep it up 👍
@fahemzoldyck1729
@fahemzoldyck1729 3 жыл бұрын
did he ?
@hectorcanizales5900
@hectorcanizales5900 3 жыл бұрын
@@fahemzoldyck1729 he created an advanced 10-hour C course video
@catalinvulcanescu
@catalinvulcanescu Жыл бұрын
@@hectorcanizales5900 where I can find it?
@johnbode5528
@johnbode5528 4 жыл бұрын
One nit at 58:18 - b gets the current value of a _and_ a is incremented, but there's no fixed order for those operations - b does not have to be assigned before a is incremented. Similarly for b = ++a, b gets the current value of a + 1 _and_ a is incremented, but there's no fixed order for those operations - a does not have to be incremented before the result is assigned to b. Depending on the architecture, those operations may even happen simultaneously. Sorry, it's just that this is something that consistently gets mis-taught - it's always assumed that the increment and assignment happen in a certain sequence, but they don't _have_ to. The operations are _unsequenced_ with respect to each other. Consequently, expressions like a[i] = i++ and a++ * a++ can give different results on different platforms. The language definition specifies that any expression that attempts to update an object more than once through the evaluation of an expression (a++ * a++), or tries to both update an object and use its value in a computation (a[i] = i++), result in _undefined behavior_ , meaning that the compiler and runtime environment are not required to handle the situation in any particular way.
@matakemisaka5465
@matakemisaka5465 4 жыл бұрын
This is an awesome tutorial! Thank you Caleb. If there is something about file operation and installing more libraries, it will be even greater.
@talldarkshark8012
@talldarkshark8012 5 жыл бұрын
Thank you for this, Caleb. Cheers!
@TravisGarnett
@TravisGarnett 5 жыл бұрын
Thank-you for this crash course, Caleb!!
@BootsandUtes
@BootsandUtes 10 ай бұрын
I haven't used C in a long time. This is, perhaps, the best C primer I have ever seen. Thank you.
@Tiparium_NMF
@Tiparium_NMF 2 жыл бұрын
You're great at conveying this information in an approachable way. I'd love to watch a more advanced course from you.
@DavidEvans_dle
@DavidEvans_dle 2 жыл бұрын
Bought the BorderLand C/ C++ compiler at a computer show, in Morristown. Been using DJGCC and MS prior. Have to say, at the time Border Land compiled really quick and they had a Help telephone number you could call. Very nice.
@DavidEvans_dle
@DavidEvans_dle 5 жыл бұрын
Wow, this is the most in depth break down of C coding video, I've seen. Would have been a lot of help in my C programming class, lucky some non-computer science majors were also taking the course, helps with the scale. LMAO
@mikle1404
@mikle1404 3 ай бұрын
3 hours, complete, clear and to the point. What an absolute chad.
@josefinamagallanes8451
@josefinamagallanes8451 5 жыл бұрын
Thank you call for code, awesome, had no idea, thank you Caleb
@molotov-zz6rm
@molotov-zz6rm 2 жыл бұрын
thank you so much! I just finished the video and followed along in code the whole time. And don't worry this was the most human and least boring programming video i've seen in a while
@elykeios
@elykeios 3 жыл бұрын
i looove your videos, they're so helpful. I a little bit past halfway on this one, doing a little bit at a time. and it makes me excited to practice what i learn. so as a result I've learned and retained more in from like half of this 3 hour video than from my c class so far hahah thank you caleb! you are a really good teacher :)
@jessif.
@jessif. Жыл бұрын
You're a gifted teacher, Caleb. Thank you so much!
@bigbrothertw
@bigbrothertw 2 жыл бұрын
28:30 i challenged myself to do this all in gnu nano and so far its going well, hopfully it keeps on going like this 🙂
@suzu6165
@suzu6165 11 ай бұрын
does anyone gets error for 2d array? 1:41:51 I actually had to use #define instead of adding const . adding const did not solve the issues for me. any suggestions or feedback please? im new to C thank you
@alexandert1703
@alexandert1703 5 жыл бұрын
Thank you, Caleb! Awesome and fun
@kck9542
@kck9542 5 жыл бұрын
Finally i got this from caleb cury ! : )
@Shadowtheguy2000
@Shadowtheguy2000 5 жыл бұрын
I have an exam in a class about C programming in about half an hour, thank you for the video
@erikmartinez3859
@erikmartinez3859 5 жыл бұрын
did u pass I have a C final in 30 min. ggs
@cheetah_5314
@cheetah_5314 4 жыл бұрын
@@erikmartinez3859 did you go good man?
@hectorcanizales5900
@hectorcanizales5900 3 жыл бұрын
@@erikmartinez3859 how did you do?
@wastedxbusted
@wastedxbusted Жыл бұрын
at 1:40:02 i can not for the life of me understand what "error: variable-sized object may not be initialized except with an empty initializer" wants from me. I initialized the multi-dimensional array properly just like how it was done in the video and made the column a const variable. I tried to declare the matrix in one line of code and initialize it in another yet it didn't work, so i am pretty much stuck here (i tried to google it but it was to no avail). If anyone could offer help it will be much appreciated! *SOLVED* _Instead of typing "int const column = 4".. type "enum{ column = 4 }"._
@O1dBay
@O1dBay 3 жыл бұрын
CHECKPOINT: 33:09 - Variables and Data Types
@pinniporker
@pinniporker 2 жыл бұрын
omg this video is so underrated thank you caleb!
@shourabhthakur4021
@shourabhthakur4021 4 жыл бұрын
Small, simple and sweet tutorial, loved it
@A_Szoros
@A_Szoros 3 жыл бұрын
Caleb, please do an intermediate course! You are a great teacher!
@arthurzaneti-cx2en
@arthurzaneti-cx2en Жыл бұрын
Congrats man, this was really helpfull for me. Never programed in C and still could follow your course and learn a lot
@ChrisPackham1
@ChrisPackham1 4 жыл бұрын
More please, intermediate C course would be awesome.
@basedworldsk8
@basedworldsk8 5 жыл бұрын
Note on windows you can just enable subsystem for Linux to get Ubuntu and then use bash to do things in your windows file system through the mnt path.
@navjotsingh2251
@navjotsingh2251 5 жыл бұрын
Or just download Ubuntu on virtual machine. I don’t like the subsystem too much.
@dipper0yawn
@dipper0yawn 3 жыл бұрын
Great course, thank you CC!
@arnasir_
@arnasir_ Жыл бұрын
An amazing course Caleb. I am confident that I can now code in C too other than Python and C++ in which I could code earlier already. Looking forward to the 10 Hour course as well. Keep doing the amazing work mate.
@DavidEvans_dle
@DavidEvans_dle Жыл бұрын
Great resource anyone taking a C programming course should definitely reference this.
@xz7525
@xz7525 4 жыл бұрын
Hi Caleb, before binging these lectures I'd evaded any association with the C-language family, as I'd held the heuristic it was beyond my conceptual realms (not coming from a core CS background). I really enjoyed your style of delivery!! Keep on throwing carrots out about extended concepts & then coming back to the reference later on...It kept my eyes on the horizon & searching for more... Keen to check out all your other work from hereon!! Cheers mate
@jessicawhitney2074
@jessicawhitney2074 2 жыл бұрын
Thank you so much for this guide! I need to learn c quickly for a project, and this has given me all the basics I need, it's been really helpful. Will deffo be checking out any other guides you have :)
@thepuriguy3157
@thepuriguy3157 5 жыл бұрын
Thanks a lot Caleb! Please do an intermediate series
@HamedAdefuwa
@HamedAdefuwa 5 жыл бұрын
i second this
@badwolf8112
@badwolf8112 4 жыл бұрын
thanks, man. finally i understand C's weird pointer syntax. as for suggestions: function pointers, some best practices, and some memory management tricks would be nice if you decided to make an intermediate crash course.
@denb4386
@denb4386 5 жыл бұрын
This C programming crash course is awesome. It is very easy to understand and to follow. Thank you for creating it ! I am also interested in advanced C programming, like network sockets programming. Thanks mate ;-)
@robschannel1156
@robschannel1156 6 ай бұрын
the most important part of the video is 1:16:17 ... not sure why that timestamp wasn't bookmarked in the description.
@demetra4740
@demetra4740 4 жыл бұрын
Thank you so much!!! So grateful for you kindness 🙏
@valentijnbruggeman936
@valentijnbruggeman936 2 жыл бұрын
Hey Caleb, i'm a complete noob to programming and just finished watching your course. Enjoyed watching and learning from you! The only improvement I could think of as a beginner would be writing out the definitions of the different syntaxes and spending a little more time explaining. I had/have a difficult time understanding what each new one means and I mean what it is at it's core. This could just be me wanting to understand something quickly that otherwise takes times and experience coding (in c). In any case a job well done and look forward to seeing new videos!
@Hofer2304
@Hofer2304 2 жыл бұрын
As with any language, use it! Write your own little programs. As you learned your native language, nobody said you its rules. Nobody wanted to hide the rules, but you couldn't understand it.
@revlambino1450
@revlambino1450 5 жыл бұрын
Wow, thanks for what you do sharing knowledge to people for free. again thanks bud
@codebreakthrough
@codebreakthrough 5 жыл бұрын
You’re welcome. That’ll be $100.
@revlambino1450
@revlambino1450 5 жыл бұрын
@@codebreakthrough Sure you deserve it not even kidding who shall I make my I owe you out to? hehe
@Abadan9999
@Abadan9999 5 жыл бұрын
Thank you Caleb!
@modelfreak125
@modelfreak125 3 жыл бұрын
This is great! I am watching this to refresh my memory of taking first level C programing. Before I start the second level. Thanks so much:)
@eivan128
@eivan128 5 жыл бұрын
nice one caleb
@celestialbeing4767
@celestialbeing4767 4 жыл бұрын
Oh hell yeah in vscode. Thank you
@abdulrahmanselmi9118
@abdulrahmanselmi9118 3 жыл бұрын
I cannot compile the code at 1:39:40. here is what I get: arrays.c: In function ‘main’: arrays.c:8:5: error: variable-sized object may not be initialized 8 | int studentGrades[][columns] = { | ^~~ arrays.c:9:38: warning: excess elements in array initializer 9 | {1, 3, 4, 6}, | ^ arrays.c:9:38: note: (near initialization for ‘studentGrades[0]’) arrays.c:9:41: warning: excess elements in array initializer 9 | {1, 3, 4, 6}, | ^ arrays.c:9:41: note: (near initialization for ‘studentGrades[0]’) arrays.c:9:44: warning: excess elements in array initializer 9 | {1, 3, 4, 6}, | ^ arrays.c:9:44: note: (near initialization for ‘studentGrades[0]’) arrays.c:9:47: warning: excess elements in array initializer 9 | {1, 3, 4, 6}, | ^ arrays.c:9:47: note: (near initialization for ‘studentGrades[0]’) arrays.c:10:38: warning: excess elements in array initializer 10 | {3, 2, 4, 5}, | ^ arrays.c:10:38: note: (near initialization for ‘studentGrades[1]’) arrays.c:10:41: warning: excess elements in array initializer 10 | {3, 2, 4, 5}, | ^ arrays.c:10:41: note: (near initialization for ‘studentGrades[1]’) arrays.c:10:44: warning: excess elements in array initializer 10 | {3, 2, 4, 5}, | ^ arrays.c:10:44: note: (near initialization for ‘studentGrades[1]’) arrays.c:10:47: warning: excess elements in array initializer 10 | {3, 2, 4, 5}, | ^ arrays.c:10:47: note: (near initialization for ‘studentGrades[1]’) arrays.c:11:38: warning: excess elements in array initializer 11 | {32, 2, 4, 9} | ^~ arrays.c:11:38: note: (near initialization for ‘studentGrades[2]’) arrays.c:11:42: warning: excess elements in array initializer 11 | {32, 2, 4, 9} | ^ arrays.c:11:42: note: (near initialization for ‘studentGrades[2]’) arrays.c:11:45: warning: excess elements in array initializer 11 | {32, 2, 4, 9} | ^ arrays.c:11:45: note: (near initialization for ‘studentGrades[2]’) arrays.c:11:48: warning: excess elements in array initializer 11 | {32, 2, 4, 9} | ^ arrays.c:11:48: note: (near initialization for ‘studentGrades[2]’) arrays.c:8:9: error: array size missing in ‘studentGrades’ 8 | int studentGrades[][columns] = { | ^~~~~~~~~~~~~ Please help!
@sewerynkaminski1116
@sewerynkaminski1116 2 жыл бұрын
Me neither, have you found a solution already?
@Ribena499
@Ribena499 2 жыл бұрын
as a plus you may if u click on the #define you should find some videos talking about the how to use it in C
@ambermeows150
@ambermeows150 4 жыл бұрын
You remind me of the new Boston by the way you teach code. Gj and thanks for the upload! I learned a lot.
@Zobney
@Zobney 4 жыл бұрын
Your videos are so good thank you so much for putting them on youtube
@framepointer
@framepointer 3 жыл бұрын
36:03 The sizeof operator returns a size_t, not an unsigned long. Before C99, the standard way of printing a size_t would be type-casting it to an unsigned long then using the %lu specifier. Starting C99, you just pass a size_t and the correct format specifier would be %zu.
@theroboman727
@theroboman727 2 жыл бұрын
Honestly im currently just learning rust, and absolutely loving it, and im only watching this for fun to compare
@rtnjo6936
@rtnjo6936 5 жыл бұрын
please I would love to see your new video, especially intermediate c course. Thank you!
@gazchao
@gazchao 3 жыл бұрын
Thanks. Your tutorial is top-notch to me.
@DotaCafe
@DotaCafe 3 жыл бұрын
I was watching this on your website but I came here to comment because every time you laugh under your breath while explaining things it inexplicably cracks me up so much hahahaha. Keep this up you are great!
@adamcolejones
@adamcolejones 3 жыл бұрын
Checkpoint: 19:53
@syedah6704
@syedah6704 3 жыл бұрын
Kool course, where is the intermediate course you promised?
@bhamuzasiphamandla5560
@bhamuzasiphamandla5560 4 жыл бұрын
you the man DAWG!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@DavidEvans_dle
@DavidEvans_dle 3 жыл бұрын
Took a 2 credit C course, thinking it would be a easy grade because I thought I knew C. The Fordham professor had pointers to structures to pointers, dereference arrays to pointers, etc on the exam. Never really showed up until midterm after the exam. Made sure to attend every class. Ended up with a B or a B+ 😒
@theseigemeister
@theseigemeister 5 жыл бұрын
Thanks Caleb. Appreciate it. 😊 Would love a similar video on Javascript if you could. Having a tough time with it from the sources I've used so far.
@codebreakthrough
@codebreakthrough 5 жыл бұрын
I’ll keep this in mind! Anything specific you are challenged by?
@theseigemeister
@theseigemeister 5 жыл бұрын
Caleb Curry Variables & objects in general. Just having a hard time learning the beginner concepts so I can build upon them you know. ~Thank you.
@IguanamobisPltworzeniestron
@IguanamobisPltworzeniestron 5 жыл бұрын
7:23 why?
@sofiasbv7628
@sofiasbv7628 4 жыл бұрын
Hi! Thank you for your videos! I have an exam in an hour and I can't find a good explanation for fread and fwrite, do you have one?
@westfield90
@westfield90 5 жыл бұрын
Thank you
@williamdurojaye
@williamdurojaye 5 жыл бұрын
Thanks so much Caleb. Can you please resume your C# tutorial series?
@codebreakthrough
@codebreakthrough 5 жыл бұрын
Coming soon to a KZbin near you!
@kusov4748
@kusov4748 3 жыл бұрын
Your laugh is amazing . Love it
@seifarram795
@seifarram795 2 жыл бұрын
thanks man
@novianindy887
@novianindy887 2 ай бұрын
1:22:12 Can we do this: for (int i; i
@Nilloc95
@Nilloc95 3 жыл бұрын
Do you have a link to that syntax guide you reference throughout the video?
@erikmartinez3859
@erikmartinez3859 5 жыл бұрын
CALEB WHAT COMPILER PROGRAM DO YOU USE!!!
@Itech6969
@Itech6969 4 жыл бұрын
sorry but is this only for Linux and Mac? If so, why dont u say it in the title, if not, where can i start watching?
@patrisio1227
@patrisio1227 4 жыл бұрын
Caleb Curry, you are a man among men. The gods are smiling down upon their beautiful creation. Thank you, and be well, my king :)
@boiplaying2647
@boiplaying2647 5 жыл бұрын
YES!
@mikeorioles
@mikeorioles 3 жыл бұрын
Late to the party, but thank you for the videos!
@vincenzo3574
@vincenzo3574 5 жыл бұрын
Can you make a more advanced one?
@alexandert1703
@alexandert1703 5 жыл бұрын
I want to ask you for video about makefiles
@alcejaylos.4257
@alcejaylos.4257 5 жыл бұрын
Caleb, whatever happens, do not stop programming, please
@alcejaylos.4257
@alcejaylos.4257 2 жыл бұрын
++
@techmedia1360
@techmedia1360 4 жыл бұрын
is there a msdn page that shows all the formats like %d %lf etc?
@shivanshubansal1124
@shivanshubansal1124 4 жыл бұрын
is there a second part to this?
@givensabraham8122
@givensabraham8122 Жыл бұрын
You not boring. Am learning
@thomasvickers9443
@thomasvickers9443 4 жыл бұрын
Caleb you are the fucking man
@anoygolui1057
@anoygolui1057 5 жыл бұрын
Great....
@rittenbrake1613
@rittenbrake1613 5 жыл бұрын
2:45:00 😂😂😂😂😂 laugh die
@aydenzhu5938
@aydenzhu5938 5 жыл бұрын
I like this crash course so much. Caleb, could you please do a Java programming crash course video?
@mvargasmoran
@mvargasmoran 3 жыл бұрын
expected ';' after top level declarator int function lilTabs(int lenght) ^ ; 1 error generated.
@chiranjeevi999
@chiranjeevi999 5 жыл бұрын
Are this for absolute beginner s
@robvanembden1944
@robvanembden1944 4 жыл бұрын
Question I can start a course in C# or python. I've low basic expirience in C. And not sure which language to choose! please advise me!!
@ksherif482
@ksherif482 4 жыл бұрын
Im a noobie as well and really loving C, but I reacon Python is easier as it is user-friendly-er, I suppose.
@sushmapuli1233
@sushmapuli1233 4 жыл бұрын
Hey Caleb, Can you do a crash course on JavaScript
@LuLu-js7ku
@LuLu-js7ku 5 жыл бұрын
good tuitorial
@carlosvilla7270
@carlosvilla7270 5 жыл бұрын
I have a mac and I am unable to get past 19:07 #include int main () { return 0; } When i try and compile I get an error Undefined symbols for architecture x86_64: "_main", referenced from: implicit entry/start for main executable ld: symbol(s) not found for architectrue x86_84 using the same platform as you. all the colors are the same except for "int" its purple. help me please ?
@codebreakthrough
@codebreakthrough 5 жыл бұрын
Hmmm. Not sure. Try void main and don’t return 0? Let us know what the fix is once you get it. Also obviously but make sure you are compiling the correct file. We’ve all been there 😉
@johnbode5528
@johnbode5528 4 жыл бұрын
Did you install the C/C++ extension (ms-vscode.cpptools)?
@johnlowell5833
@johnlowell5833 10 ай бұрын
Four years late to this, but if anyone else is running into this issue, it's most likely because you have not saved the file prior to running the gcc filename.c command
@kingdavidechatah4093
@kingdavidechatah4093 4 жыл бұрын
okay I feel you didn't give enough details about strings like you didn't talk strset, strstr, strcmp and the rest
@pastasawce
@pastasawce 3 жыл бұрын
I got a segmentation fault error seconds after you mentioned it
@MoonJumpMania
@MoonJumpMania 5 жыл бұрын
Is it possible to do void main(){} instead of int main(){}?
@codebreakthrough
@codebreakthrough 5 жыл бұрын
I think so. Try
@MoonJumpMania
@MoonJumpMania 5 жыл бұрын
@@codebreakthrough Alright thanks
@johnbode5528
@johnbode5528 4 жыл бұрын
TL/DR version - don't use void main(). Michener version - Unless your compiler documentation _explicitly_ lists void main() as a valid signature, the behavior will be _undefined_ . It may work. It may not. On most common server and desktop implementations it won't blow up, but you should (hopefully) get a diagnostic while compiling the code. I know of a couple of older, oddball systems that aren't used anymore where programs using void main() would either crash on exit or fail to load at all. Unfortunately, a lot of references (including K&R) use void main(), but strictly speaking it isn't correct and shouldn't be used. For a hosted implementation (basically, anything with an operating system), the standard signatures for main are int main( void ) and int main( int, char **). Use the first form when your program doesn't take any command line arguments, use the second form when it does.
@beetlejuicefan5966
@beetlejuicefan5966 2 жыл бұрын
42:45
@Froodiest
@Froodiest Ай бұрын
Stop looking through the comments and focus on the video!
@DavidEvans_dle
@DavidEvans_dle 2 жыл бұрын
Took a 2 credit C-language course, the final exam consisted of Arrays of Pointers to Structures to deference pointers to a macro with a fstream print of what results are produce?? LOL talk about cryptic coding... all fun for only a 1.5 hour course.
@arjunvarma9350
@arjunvarma9350 5 жыл бұрын
Is this tutorial enough to understand entire c and how it works
@navjotsingh2251
@navjotsingh2251 5 жыл бұрын
Arjun Varma yes. Use this video to start off. Then read a book about advanced data structures and algorithms and try to implement them yourself like bubble sort, heaps, linked lists, Boolean logic, recursion etc
@tenzinkhorlo1538
@tenzinkhorlo1538 2 жыл бұрын
0:10:20
@collinsopoku6254
@collinsopoku6254 4 жыл бұрын
can somebody help me with any nice code editor for c-program
@diwakar8815
@diwakar8815 5 жыл бұрын
What is the ide your using…?
@codebreakthrough
@codebreakthrough 5 жыл бұрын
Visual studio code
@Ilikeshake
@Ilikeshake Жыл бұрын
50:00
C Programming Tutorial for Beginners
3:46:13
freeCodeCamp.org
Рет қаралды 17 МЛН
you will never ask about pointers again after watching this video
8:03
Wednesday VS Enid: Who is The Best Mommy? #shorts
0:14
Troom Oki Toki
Рет қаралды 50 МЛН
Какой я клей? | CLEX #shorts
0:59
CLEX
Рет қаралды 1,9 МЛН
Their Boat Engine Fell Off
0:13
Newsflare
Рет қаралды 15 МЛН
SLIDE #shortssprintbrasil
0:31
Natan por Aí
Рет қаралды 49 МЛН
Master Pointers in C:  10X Your C Coding!
14:12
Dave's Garage
Рет қаралды 340 М.
Complete Roadmap for Backend Software Engineers (START HERE!)
30:17
C in 100 Seconds
2:25
Fireship
Рет қаралды 3,2 МЛН
C++ Tutorial for Beginners - Learn C++ in 1 Hour
1:22:56
Programming with Mosh
Рет қаралды 4,5 МЛН
REST API Crash Course - Introduction + Full Python API Tutorial
51:57
C++ Crash Course For Beginners
1:34:40
Traversy Media
Рет қаралды 350 М.
How I program C
2:11:32
Eskil Steenberg
Рет қаралды 797 М.
C Programming Full Course for free ⚙️
4:05:00
Bro Code
Рет қаралды 3,7 МЛН
Pointers in C for Absolute Beginners - Full Course
2:04:29
freeCodeCamp.org
Рет қаралды 260 М.
Wednesday VS Enid: Who is The Best Mommy? #shorts
0:14
Troom Oki Toki
Рет қаралды 50 МЛН