05-26-2023, 09:55 AM
what are some good courses/videos or tips for learning c
i have some programing knowledge in python so not a complete begginer
i have some programing knowledge in python so not a complete begginer
learning c |
05-26-2023, 09:55 AM what are some good courses/videos or tips for learning c i have some programing knowledge in python so not a complete begginer 05-26-2023, 06:18 PM 05-27-2023, 02:01 AM (05-26-2023, 06:18 PM)Clocker Wrote:gonna check them out now(05-26-2023, 09:55 AM)liptonpeach Wrote: what are some good courses/videos or tips for learning c thanks 06-05-2023, 07:20 AM A good youtube playlist is: https://www.youtube.com/watch?v=KnvbUiSx...AOFI8xIB6e Or as compact youtube video: https://www.youtube.com/watch?v=KJgsSFOSQv0 Another good and free platform for learning programming languages is: https://www.sololearn.com/ To improve your skills, I recommend: https://www.codewars.com/kata/search/c and https://www.hackerrank.com/domains/c 06-06-2023, 09:37 AM (05-26-2023, 09:55 AM)liptonpeach Wrote: what are some good courses/videos or tips for learning c The standard for learning C is the book that's referred to as "K&R". It's a pretty short read and it explains in great detail how C really works. When I was a beginner, online tutorials were alright, but I still got weird errors I didn't know how to solve. K&R goes into just the right amount of detail about all of C's feature in the ANSI-C version. (A little outdated but not too much, since C's barely updated since then(look at the wikipedia page to see what you'd be missing out on)). Hope this helps. |