kth smalles/largest elementhttps://www.techiedelight.com/find-kth-largest-element-array/Jan 21, 2021Jan 21, 2021
Struct vs UnionA structure is a user-defined data type available in C that allows to combining data items of different kinds.May 8, 2020May 8, 2020
Binary TreesA binary tree is made of nodes, where each node contains a “left” reference, a “right” reference, and a data element. The topmost node in…Jul 8, 20191Jul 8, 20191
Scam emails I’ve received during apartment search in GermanyIf you search a flat in Germany, you will receive tons of scam emails. This one is the first and last(so far) scam mail I actually replied.Aug 30, 20187Aug 30, 20187
LambdasThe difference between a captured argument and a passing argument could be seen with an analogy. Consider the following function object:Jul 10, 2018Jul 10, 2018
MQTT and MosquittoMQTT is a machine-to-machine (M2M)/”Internet of Things” connectivity protocol.Jul 10, 2018Jul 10, 2018
Algorithmshttps://www.geeksforgeeks.org/commonly-asked-data-structure-interview-questions-set-1/Jun 7, 2018Jun 7, 2018
Virtual inheritance to solve diamond problemYou want: (Achievable with virtual inheritance)Apr 24, 2018Apr 24, 2018
What is a toolchain and a cross compiler?If we define the word “host” to mean a computer on which you are compiling, and “target” as the computer on which you want to run the code…Apr 5, 2018Apr 5, 2018
Network Abstraction Layer - NAL and VCLThe Network Abstraction Layer (NAL) is a part of the H.264/AVC and HEVC video coding standards. The main goal of the NAL is the provision…Apr 3, 2018Apr 3, 2018
Media Control Interface — MCI and DirectXThe Media Control Interface — MCI for short — is a high-level API developed by Microsoft and IBM for controlling multimedia peripherals…Apr 3, 2018Apr 3, 2018
RestREST, or REpresentational State Transfer, is an architectural style for providing standards between computer systems on the web, making it…Apr 3, 2018Apr 3, 2018
Where global variables are stored?All allocation made by malloc(), calloc() or realloc() are stored on the heap, while all local variables are stored on the stack.Feb 12, 2018Feb 12, 2018
explicit keywordThe compiler is allowed to make one implicit conversion to resolve the parameters to a function. What this means is that the compiler can…Feb 1, 2018Feb 1, 2018
Hardware debugging — JTAGThe JTAG has an unique interface which enables you to debug the hardware easily in real time. It can directly control the clock cycles of…Jan 31, 2018Jan 31, 2018
Bus Systems: CAN, LIN and EthernetA vehicle bus is a specialized internal communications network that interconnects components inside a vehicle (e.g. automobile, bus, train…Jan 31, 2018Jan 31, 2018
MicrokernelA microkernel (also known as μ-kernel) is the near-minimum amount of software that can provide the mechanisms needed to implement an…Jan 29, 2018Jan 29, 2018