Loop Through A String Without Using strlen() | C Programming Example

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

It's amazing how simple C is. My favorite language by far.

gammyhorse
Автор

Sir your explanation of algorithms and concepts of C is awesome 👍

kuntalbhowmick
Автор

Nice video, thank you Kevin. I do encounter those cases where the radio receiver (operated by MCU with C code) receives data packets (via the UART) from the transmitter every once in a while. This method helps decipher the packet, remove the overhead, identify the data and act upon this data.

fifaham
Автор

As always, great and informative content. Thank you!

theyayaa
Автор

When you think you know all the things to optimize your code, and yet another way of getting rid of a counter for strings pops up on youtube! Thanks a lot for sharing this ^_^

ParhamSalamati
Автор

Can you an example Hash tables in C please?

knox
Автор

It is also possible to use sizeof in this case

ante
Автор

Hi Kevin, i'm having trouble to find a solution to a problem i'm dealing with and i would like to get your opinion

i study C for a long time, i love the language and i have advanced knowledge about C, but i want to learn C++, but kinda not "C++ for beginners" stuff.
How can i get a good "transition" to C++ with a course? How would you suggest for me to get familiarized with C++ using the knowledge i already have with C?
Like.. a C++ course to teach you what you need to learn for the transition to C++ when you already have solid fundamentals of C and Algorithms?

kiruk
Автор

But sir, what if we jump 3 characters each iteration
What will happen then?
does that mean that we entered an infinite loop

xhamody
Автор

Is C language used really still somewhere?

ruslanazimov
Автор

You should always use ++i not i++. i++ [the post increnent operaor] unnessiaarily stores the old value of i, whereas the preincrement operator [++i] doesn't

skeleton_craftGaming
Автор

Alright about the main principle, but not a fan of optimizations that make the code less readable

neoroman
welcome to shbcf.ru