Love your videos and you explanation for them. You make hard materials easy to understand. I need to make my first project in c....and I'm searching all KZbin to find how do I do it.
@onaecO Жыл бұрын
Dear Daria, thx very much. Just trying to create the page i needed for myself when i started all this “self taught programming” deal. Which project do you have to do?
@dariabuyanovsky8033 Жыл бұрын
@@onaecO now I need to write a program that make different operations on sets. Like read_set .... read_set SETA, 5, 6, 5, 76, 44....-1 this function need to place them in order by bits. It will place the group 5, 6, 44, 76 to SETA. if the group has no numbers beside -1 the group is empty. union_set, intersect_set, sub_set,
@onaecO Жыл бұрын
Mh i understand, have you tried with AI given that u cannot find nothing online? chat.openai.com/chat This tool is 🔥
@dariabuyanovsky8033 Жыл бұрын
@@onaecO Thanks a lot 🙏 💓
@user-fcds Жыл бұрын
Tenho gostado muito dos seus vídeos. Mas gostava de saber se o projeto transcender que sw aprende na piscina ou quando ja se é aluno?
@simonmarabi266110 ай бұрын
very nice video
@ambermartinez26163 ай бұрын
Thank you!
@Pvcdr Жыл бұрын
Your explanation are always so clear thank you so much. Are you going to do the rest of the school program ?
@onaecO Жыл бұрын
Dear friend, thx so much for the kind words! The final goal of this yt page is to create a “42 library” where students can get a real clear picture on the task, where comments are very very very important (maybe more than the videos, given i m just a student as well and not a teacher 😃). Currently i m doing the cursus, time is not that much but for sure i ll keep this thing alive. Like now i m doing an intro course-videos about C (the one i needed like hell to save myself in my piscine 🤣), for sure I’ll share cursus projects , the rest of the piscine probably in a second moment ;)
@tashiyassin44558 ай бұрын
thank you very much
@Mcblowblow Жыл бұрын
love you man
@onaecO Жыл бұрын
🙈♥️
@Sencires Жыл бұрын
Great content! Got my sub
@onaecO Жыл бұрын
Thx my friend! u won t regret
@marcelajimenez74825 ай бұрын
Thank you very much❤️❤️
@amireid8496 Жыл бұрын
Hey, i tried this method in the last test and Molinette just gave me back a segmentation fault…what shouldi do
@onaecO Жыл бұрын
Friend this code is not checked by moulinette, i just did the exercises myself, there are probably strange corner cases like NULL pointers as inputs i guess. Btw moulinette gives u the inputs where the code broke, from there is easy to understand what happened ;)
@xvanichx Жыл бұрын
Thanks!!)))))
@onaecO Жыл бұрын
Thx you my friend ;)
@astralfoxy17872 ай бұрын
3:14 - That's not right. It is a array of pointers to char. Some people said "Oh, it's a pointer to array" what doesn't right cause pointer to array looks like this: char (*ptr)[] But author variant should looks like: "char* (*ptr)[]
@trickyepithet9122Ай бұрын
ye because its a function parameter. and more specifically its an array of pointers to the command line arguments