#c
Read more stories on Hashnode
Articles with this tag
When you are facing to use microcontroller vendor's library code or toolchain, you would see many conditional preprocessor directives. In using...
When you have worked as a firmware engineer, you have read many different vendors' low-level driver source code which is written in C language. Also,...
AND Some bit manipulation problems require to use AND in code. In this article, I will introduce couple AND problems and solution. AND is represented...
XOR Many popular bit manipulation problems require to use XOR in code. In this article, I will introduce couple XOR problems and solution. XOR is...
Problem statement is simple. Given two positive integers, return their sum without + operator. Reference:...
Before starting TDD, we need software spec and test cases. Our goal is demonstrating software development process with a simple example:fizzbuzz...