misc Mouse click not working virtual box after drag and drop Lost the mouse control when performing the drag and drop in the virtual box. To recover from this...
c++ programming Virtual functions in C++ Virtual functions allow us to redefine/extend the functionality of the base class in the derived class. such that...
c++ programming Object in stack vs heap C++ Unlike java where the object for the class can be declared only in the heap, C++ allows us to allocate memory for an object in the stack...
c++ programming oops concepts in c++ In this article, I will give an introduction to the object oriented programming and we will see what is the major difference between module...
c programming Little Endian vs Big Endian Endianness specifies the order in which the bytes of data are stored/processed by a computer.
c programming C Object files and their memory layout Object files contain the binary information which is generated by either assembler or linker. In Linux object files are in Executable and linkable file format...
c programming Computer memory and its addressing Computer memory is an electronic chip which consists of millions of transistors and capacitors...
c programming What is an expression and statements in C? An expression contains both operators and operands. Statements are the set of instructions that are executed in the sequence and ...
c programming Thread synchronization using mutex and cond variables In this article, we will see how to synchronize two threads using the mutex and conditional variables.
c++ programming Implement strtok() function in c/c++ In this article we will see how to implement stringtok function in cpp
c++ programming auto keyword in C++ 11 The meaning of the auto keyword is changed in C++ 11. Prior to C++ 11, it was under the list of storage class specifiers...
c programming Volatile in C/C++ volatile is a pre-defined keyword that is used to specify that the value in the variable may change at any time during...
c++ shorts Pointer vs reference variable in C++ A reference is just giving another name to an existing object or variable. Whereas a pointer is a variable that stores the address of another object.
c++ programming References in C++ with example A reference is just giving another name to an existing object or variable. There is nothing we can do with references that we cannot do with...
c++ shorts What is --> operator in C/C++ ? In C++, we can combine two same/different operators in a single expression. '-->' is not a single ...
c++ programming C++ constructors Constructors are the special type of methods that get called when we create an instance for a class i.e. an object.
5G NR 5G-NR UE Identities (5G Identifiers) 5G-NR UE identities - IMSI, IMEI, SUPI, SUCI, 5G-GUTI, 5G-S-TMSI. IMSI stands for International mobile subscriber identity. It is a global...
5G NR Analogue vs digital beamforming Beamforming can be done in two ways They are analogue beamforming and digital beamforming. In analogue beamforming...
5G NR Beamforming in 5G-NR The creation of a beam using the constructive interference between the signals transmitted by each antenna element...
5G NR Massive MIMO in 5G-NR Massive MIMO is the extension of MIMO with which we can bring a huge number of antennas at the base station which in turn improves the ...
c++ programming C++ classes, objects & methods A class is an object-oriented paradigm or model used to group both data & functionality together. Classes provide additional features...
c programming Operator precedence and order of evaluation Operator precedence and the order of evaluation plays a major role when two or more operators are used in a statement. for example...
c programming Operators in C Operators are the symbols, which are used to perform operations on the operands. Operators are always associated with operands.
c programming Lvalue and Rvalue in C Lvalue is also known as locator value that always refers to an object. Here the object is named region of storage. In simple words, an Lvalue...