Hey There! I am Lingaraj Senapati, the Co-founder of lingarajtechhub.com My skills are Freelance, Web Developer & Designer, Corporate Trainer, Digital Marketer & Youtuber.
Python In Numbers: There are three numeric types in python which handle different mathematical calculations through the data. Int [Integer] float [Float] complex Then variables are numeric types created when assign on data on it. Like, So to verify the…
Here, we input elements in an array and sort that array using pointers. We can sort the array using ascending and descending order normally without and with pointer also. Logic to sort an array using pointers in this program we…
Python is an interpreted, high-level and general-purpose programming language. It was created by Guido van Rossum, and released first version on 1989. Python used for, Web Development (Django) Server-Side programming language. Desktop Application Mathematics System Scripting. Data Science Machine Learning…
Dangling pointer When a pointer pointing to a memory location that has been already deleted means freed is called a dangling pointer. There are three different ways where Pointer act as dangling pointers. First Way: De-Allocation Memory: Second Way: Function…
Logical AND(&&) and Logical OR( || ) both are using to handle multiple conditions. Logical AND ( && ): While talking about logical AND( && ) if the first condition is false then the compiler doesn’t follow the second condition…
In this program we discuss about how to add two pointer variables. Means here we perform some arithmetic operations like addition. Take an Example Add 2 Pointers: Knowledge Required Basic C programming and Pointers. Logic Of Addition Of Two Pointers:…
Write a c programming to create, initialize and how to use of pointers. How to use address and access values using pointer variable in C programming language. Knowledge Needed Basic C programming and some basic concept of Pointers. Basics Of…
In this tutorial discuss about function returning the pointer variable to the calling function. So you must be careful, because local variables of function we can’t declare outside the function. Because they have scope only inside the function. When a…
In this tutorial we are going to discuss about working of pointers on function in different aspects with examples. In C programming, it is also possible to pass addresses in function argument. So let’s take an example: Example: Pass Addresses…
It is a very important part in array to calculate memory address. Because we can easily recognize the array element. In this tutorial, we discuss address calculation in 1D Array element. Suppose, In one dimensional array, The memory representation of…