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
javascript-shorts How to convert a string to a Date Object We can easily convert a string to a date object using the function Date(). It accepts the string in different formats.
javascript-shorts How to scroll an element into a view using javascript? scrollIntoView() is a method that is supported by all the major browsers that align an element automatically with the top/left of the viewport.
javascript-shorts How to convert a title to URL slug using Javascript We can easily convert the title to URL slug using the replace method and using some of the regular expression notations...
javascript-shorts How to convert a string to template string in javascript To convert a string to the template string we either have to use the dynamic code generation or...
javascript-shorts How to click a link programmatically in javascript? To click on a link programmatically in the javascript you can just use ...
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...
python Introduction to python Python programming language was created by "Guido van Rossum" and was released in 1991. Python is a portable, functional...
c++ programming Introduction to compilers, linkers, and debuggers The computer can understand only binary code which consists of 0s and 1s. Whereas the C++ code written by us is a set of instructions that...
c++ programming C++ Standardization This "C with Classes" which extends the C language had new features like classes, member functions, inline functions, derived classes, member functions...
c++ programming Introduction to C++ C++ was developed by Bjarne Stroustrup, a Danish computer scientist, at Bell Labs in 1979. C++ is an extension of the C language...
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...