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 Free C programing for beginners Introduction to C language History of C language Structure of a C program Compiler What is a compiler?Install C compiler in windows.Install C compiler in Linux with WSL.Compilation process of a C programC program to print "Hello world"!! Keywords Identifiers Variables
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 Different between a pointer variable and 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...
c programming Constants in C Constants play a major role during the static initialization of variables. In C, Constants are roughly divided into 3 types i.e. Numeric, character & string constants.
c programming Type conversion in C Typecasting or type conversion is converting an operand of one type to another type. Typecasting in C is performed in two different ways...
c programming How do negative numbers get stored? Compared to positive values, the way how negative values get stored in the computer is completely different. Most computers today...
c programming Short and long type modifiers in C Short type modifier applies only to the int datatype. After applying the short type modifier the size of an int data type will be 2 Bytes.
c programming Signed and unsigned type modifiers in C Type modifiers in C are used as a prefix to the datatypes to re-define the size & range of the datatype. Based on their usage, type modifiers in C are...
c programming Float and double datatype in C Variables declared with float datatype can able to store 32-bit decimal point value [e.g. 33.34], the representation of decimal-point in...
c programming Int datatype in c Variables declared with int data type can accommodate 32-Bit integer value i.e. 4BYTES. The size varies from compiler to compiler i.e. in 32-bit TCC & BCC...