Embedded C/C++C Program to implement custom mutex_lock() and mutex_unlock()This problem is a tricky question often asked during tech interviews. Here we need to create custom…Jithin TomSeptember 07, 2025 1 min
Embedded C/C++Modulo Operator in C using Bitwise OperatorsThis is a common interview question to implement the modulo operator without using the operator…Jithin TomSeptember 07, 2025 1 min
Embedded C/C++C Program to reverse bits in a 32-bit unsigned wordC Program Code Walkthrough The function reverseBits iterates 32 times (for each bit). In each step…Jithin TomSeptember 07, 2025 1 min
Embedded C/C++Time and Space Complexity in ProgrammingWhat is Time Complexity? Time complexity means how much time (number of steps or operations) an…Jithin TomSeptember 02, 2025 1 min
Embedded C/C++Implementation of Singly Linked List in CA singly linked list is a data structure consisting of nodes where each node has a pointer to the…Jithin TomSeptember 22, 2022 2 min
Embedded C/C++Angle between hour and minute hands of analogue clock using CThis is a very interesting clock angle problem where the C program described in this article…Jithin TomSeptember 22, 2022 1 min