Related resources for Pointer
  • Explaining 3SUM Problem10/31/2024 4:38:50 AM. 3SUM Problem a classic problem in computer science and is often used in coding interviews to test problem-solving skills and understanding of algorithms.
  • Construct a Deep Copy of LinkedList10/3/2024 11:25:30 AM. The task involves creating a deep copy of a linked list where each node has a random pointer that may point to any node or null. Using a dictionary to map original nodes to their corresponding new nod
  • Explaning Random Access in File9/24/2024 5:03:45 AM. Random access in files allows direct movement of the file pointer to any position, enabling reading or writing at specific locations without sequential processing. Functions like fseek(), ftell(), and
  • The Functioning of Array of Integer Pointers6/30/2024 3:19:12 PM. In C programming, an array of integer pointers is declared similarly to a regular integer array, with the primary distinction being the addition of an asterisk (*) before the array name.
  • The Implementation of Pointer to Function6/27/2024 11:58:19 AM. This content explores the implementation of pointers to functions in C and C++ programming. It delves into their syntax, usage, and benefits, such as dynamic function calls, callback functions, and ef
  • Optimizing Memory Management in C#6/4/2024 7:23:27 AM. In this article, we will learn Memory management and optimization are crucial aspects of C# development, especially for applications that demand high performance and efficient resource utilization.
  • What are the Pointer Events supported in ReactJS?5/23/2024 6:37:42 AM. React supports a wide range of Pointer Events, which provide a unified way to handle input from various pointing devices such as a mouse, touch, or pen. Pointer Events offer more detailed information
  • Pointers to Pointers and How Pointers Relate with Array5/16/2024 9:25:05 AM. Pointers is a type of data in C; hence we can also have pointers to pointers, just we have pointers to integers. Pointers to pointers offer flexibility in handling arrays, passing pointers variables t
  • Dereferencing Pointers and Void Pointers in C4/29/2024 11:18:18 AM. Dereferencing pointers involves accessing the value stored at the memory address pointed to by a pointer. Void pointers in C are generic pointers that can point to any data type but require explicit t
  • Delegates in .NET4/22/2024 8:57:01 AM. In this article, we will learn Delegates in .NET provide a powerful mechanism for defining and encapsulating methods, enabling flexible event handling and callback functionality.
  • An in-depth look at C# 10 and performance improvements2/25/2024 2:25:50 AM. Get a comprehensive analysis of Ziggy Rafiq's latest C# 10 enhancements and how they affect application performance. Discover how function pointers simplify method invocation, records enhance memo
  • Two Pointer Approach in Python2/1/2024 4:43:19 AM. The Two Pointer Approach is one of the most used and efficient techniques to search for a pair in a sorted array. We'll look into the working of it, implementation and use cases.
  • Learning Delegates In C#9/12/2023 10:45:45 AM. There is this thing in C# called a delegate, which is going to be crucial to build interactions between our objects. What’s a delegate, you ask? Good question. A delegate is a pointer to a method.
  • Positioning Caret in Textbox9/10/2023 9:16:30 PM. This article explains how to position a caret in text using code.
  • Pointers In C#6/6/2023 9:14:32 AM. C# Pointer is a variable that holds memory address of another type. In this article, learn how to implement pointers in C#. Here you will learn how to define C# Pointers.
  • C# Heap(ing) Vs Stack(ing) In .NET - Part One6/6/2023 8:17:38 AM. Even though with the .NET framework we don't have to actively worry about memory management and garbage collection (GC), we still have to keep memory management and GC in mind in order to optimize
  • Writing unsafe code - pointers in C#5/2/2022 9:46:08 AM. In this article I will give a short description of one of the feature of C# which are pointers and so-called unsafe code. This subject is particularly close for C++ programmers. Moreover, it is a feat
  • Using Pointers in C#2/8/2022 11:33:33 AM. This article explains the concept of pointers and how you implement them in C# should you need to.
  • Power BI Pointers - Power Platform Virtual Conference 3/16/2021 1:05:24 PM. This session is about “Power BI Pointers” in Power Platform Virtual Conference 2021.
  • Unsafe Coding: Pointers in .NET2/9/2021 9:07:57 AM. In this article you will learn one of the advanced concepts of the pointer implementation under the CLR context.
  • Customizing Mouse Pointer In Windows 101/17/2020 2:32:30 PM. In this article you will learn how to customize Mouse Pointer in Windows 10.
  • Various Kinds of Mouse Pointers For HTML Controls1/14/2020 4:38:19 PM. This article explains how to use various mouse pointers in HTML.
  • Re-Enable the Mouse Pointer Drop Shadow in Windows 812/9/2019 5:11:14 AM. This article describes how to re-enable the mouse pointer drop shadow effect in Windows 8.
  • How to Prevent Changing Mouse Pointers in Windows 812/4/2019 3:43:38 AM. In this article I will describe how to prevent the changing of the Mouse Pointer in Windows 8.
  • Linear Pointer Changing Various Effect Using HTML512/2/2019 2:29:54 AM. In this article we are going to understand a topic related to the designing; the scenario for this is Linear Pointer changing various effect. In this part you can select from various options and as yo
  • Concept Of A Delegate In C#10/13/2018 6:44:39 AM. An interesting and useful property of a delegate is that it does not know or care about the class of the object that it references. Any object will do; all that matters is that the method's argume
  • Creating Google Maps AutoComplete DropDown With Multiple Map Pointers3/3/2017 11:29:17 PM. Using this method, you can implement complete Google Maps implementation.This code is written in AngularJS and MVC , but you can use in pure JavaScript also.
  • Pointers And Unsafe Code In C# - Everything You Need To Know9/25/2016 7:11:54 AM. In this article, you will learn about pointers and unsafe code in C#.
  • Pointers And Unsafe Code5/6/2016 11:08:04 AM. In this article you will learn about Pointers and Unsafe Code in C#.
  • C++ Refresher - Part Four3/3/2016 9:40:52 AM. In this article you will learn about using pointers with functions, pointers and arrays, pointers to structures, and pointer arithmetic.
  • Use Of Pointers In C#10/19/2015 5:11:58 AM. In this article you will learn about the usage of Pointers in C#.
  • Pointers in C Language6/4/2015 8:24:26 PM. In this article you will learn about pointers in the C language.
  • Spinning Image When Mouse Pointer on Button in WPF4/14/2015 6:29:13 PM. In this article we will learn how to spin an image in a WPFapplication on MouseEnter or MouseLeave event.
  • Introduction To C Language3/5/2015 6:44:38 PM. In this article you will learn about the C language.
  • Windows Phone 8.1: Gesture Support With GestureRecognizer Class (C# XAML)1/28/2015 11:59:05 PM. This article explains how to programmatically handle gestures in WindowsPhone Store 8.1 applications.
  • Move ToolTip Along With Mouse Pointer2/27/2014 2:47:07 PM. This article explains how to move a ToolTip along with the Mouse Pointer.
  • Introduction to C Pointers: Basic1/22/2014 3:29:22 PM. This article describes how to work with pointers in C.
  • Mouse/Pointer Events in AngularJS12/30/2013 1:58:38 PM. This article explains how Mouse/Pointer Events work in AngularJS.
  • Iterations and Performance in .NET11/11/2013 12:54:33 PM. I’ve been implementing numerical libraries in .NET and have come to some conclusions about iteration performance.
  • Pointer Input Events in Windows Store Apps Using XAML11/22/2012 11:32:39 AM. In this article I will show you the use of Pointer events in Windows Store Apps using XAML.
  • Pointer Events in Windows Store Apps Using C#11/17/2012 11:17:30 AM. In this article I show the uses of pointer events such as Pointer Entered and Pointer Existed and how to associate these with the mouse pointer in Windows Store Apps using XAML and C#.
  • XML Strengths and Weaknesses with DOM, ASP, and XSL9/29/2012 6:17:46 AM. In this article we're going to take a look at some of the terminology that comes with using XML and its related technologies, as well as how to create and transform XML documents with XSL using Microsoft's MSXML parser. To test the code samples shown in this article you should be running Windows NT/2000/XP with IIS installed. You should also have SQL server 2000 installed on the same machine.
  • Delegates and Events in C#11/25/2009 1:00:02 AM. In this article I will explain about Delegates and Events in C#.
  • Creating a Stack-Based Array10/12/2009 10:42:46 AM. - Learn how to create high-performance stack-based short-lived arrays. - Learn how to work with array pointers. - Learn how to copy arrays many times faster.
  • Simple Sniffer in C#12/27/2005 3:50:13 AM. This program shows you how to retrieve data from a packet using Sockets.
  • Implementing Delegates in C# : Part 212/26/2005 4:35:19 AM. This is second part of Timothy's Delegates in C# series...
  • Comparison of C# with Java: A Developer Perspective12/17/2005 2:25:19 AM. The .NET is a language and operating system (on Windows as of now) independent platform pretty similar to Java.