Embedded C/C++Reverse order of words in a string using C languageReversing the order of words in a string is a common interview question for embedded software…Jithin TomSeptember 22, 2022 1 min
Embedded C/C++Simple code to find endianness in CEndianness is the order of storage of bytes of a word in memory; there are big-endian and little…Jithin TomSeptember 22, 2022 1 min
Embedded C/C++Example C code to set 5 bits starting from position 10This is a common embedded software interview bitwise operation question. The magic numbers '5' and…Jithin TomSeptember 22, 2022 1 min
Embedded C/C++Custom sizeof operator in CThe unary operator 'sizeof' is a very handy tool in C as well as in C++. It gives the storage size…Jithin TomSeptember 22, 2022 1 min
Embedded C/C++C program to reverse a stringThis is a very simple C program to reverse all the characters in a given string. For example…Jithin TomSeptember 21, 2022 1 min
Embedded C/C++C program showcasing bitwise operationsBitwise operations are fundamental to embedded C programming. When developing firmware for…Jithin TomSeptember 21, 2022 1 min