SGShreyos Ghoshinshreyos.hashnode.dev·Feb 17, 2023 · 10 min readWorking with Threads in C++ | Part - 2Previously, we've seen some different ways to create a thread instance and how to manage them using the join() and detach() methods. In this article, I will discuss about move semantics of thread ownership, mutexes, and other related topics. Move Own...00
SGShreyos Ghoshinshreyos.hashnode.dev·Jan 3, 2023 · 9 min readWorking with Threads in C++ | Part - 1In any language, threads can be a very useful tool to do a certain task more efficiently by allowing the program to do multiple operations (e.g. input, processing, storage and output) at the same time. Threads can be utilized to allocate and execute ...00
SGShreyos Ghoshinshreyos.hashnode.dev·Aug 4, 2022 · 21 min readDonut MathIn this blog post we will learn about how we can create a donut/torus using <C> language. Before making this blog I was reading another article written by Mr. Andy Sloane from which I came to know about the concept of this Donut Math. And my focus o...00
SGShreyos Ghoshinshreyos.hashnode.dev·May 16, 2022 · 22 min readHow to make a Snake Game ?Let's say you have completed all the basics for C programming language and want to test your learnings and create some projects. At this point a Snake Game can be a good project to add to your portfolio. Now to make this game we need to create bound...02EA