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…embeddedSoftSeptember 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…embeddedSoftSeptember 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…embeddedSoftSeptember 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. As for example…embeddedSoftSeptember 21, 2022 1 min