Check If Strings Are Equal Using Recursion | C Programming Example

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

Dude you are just great! I am starting to learn c and all of your videos are very helpful!
It would be good if you would give some projects idea to do with c and you show how to build those

eyalshain
Автор

Sir, Your code explanation process is very beautiful.

kuntalbhowmick
Автор

keep going sharing this problem to learn more about c

coding-code
Автор

Thank you. I would love to watch your videos.🎉

sravanakumar
Автор

can you make a video using fork() getpid and getppid ?

Gallegolp
Автор

you can even remove all the elses because you are returning from all the ifs

Brad_Script
Автор

Why not just recursively call the function with string_equals(s1 + 1, s2 + 1) since it isn't necessary to modify the variable in each stack frame with side-effects. Each stack frame has it's own s1 and s2 variables anyway.

SlideRSB