Aman Kumaraksaman.wtf·Sep 14, 2024Understanding pointers with structs in cThis is the second part of the series Understanding C pointer shenanigans. If you already understand pointers, go ahead, but if want to get a better understanding of pointers in c, go to the part 1, read that and come back. Now, as you are here, i ho...DiscussPointers in CC
Aman Kumaraksaman.wtf·Sep 14, 2024Understanding C pointer shenanigansThis is a two part series about pointers in c:Find part 2 here: Understanding pointers with structs in c Pointers are,...well, pointers, like literally they point at things. So, If on. the road you ask me do you own a cafe, i'll say no. But, i know ...DiscussPointers in CC
Srimanth MantripragadaforDSA In Pythonmantri-1724774733617.hashnode.dev·Sep 7, 2024Article 3 of learning DSA in Python.Classes & Pointers In DSA, classes & pointers play a very important role in data structures. For example, a linkedlist has the following functions in it: def __init__(self,value) def append(self,value) def pop(self) def prepend(self,index,value) ...Discuss·10 likes·35 readsclasses
abhishek kumaraksilearntocoder.hashnode.dev·Aug 10, 2024Learn C# with OOPS Concept(Memory Management)Lets understand memory management with simple C# Program as given below:- class Employee { int Employee_Id; //member variables/instance variable of a class string Employee_Name; public static void Main() { Employee objEmployee=new Employee(); } } Que...Discussglobal memory
Arya M. Pathakarya2004.hashnode.dev·Aug 4, 2024Understanding Pointers, Reference and Value Semantics in GoUnderstanding the distinction between pointer and value semantics in Go is crucial for writing efficient, maintainable, and bug-free code. In this blog post, we’ll delve into some special cases in Go where understanding reference and value semantics ...Discuss·17 likesGo Deep: Mastering Golang FundamentalsGo Language
Navya Anavyadevops.hashnode.dev·Jul 22, 2024Go Series Part 9: Pointers in GoIntroduction Pointers are a fundamental concept in programming, allowing you to directly manipulate memory addresses. In Go, pointers provide a powerful way to optimize performance and manage memory effectively. This part of our series will explain h...Discussgolang
Abdur-Rahman Fasholashafspecs.hashnode.dev·Jun 27, 2024Breaking down pointers (in C++)I recently began learning C++ (or CPP), a powerful language built on C. C++ is a language that exposes a lot more than conventional languages like JS, Python and Java. Having worked with weird languages (like Rust) and language for dummies (Golang), ...Discuss·3 likesC++
Raicode.flatmarstheory.com·May 30, 2024Mastering Pointers in CIn the ever-evolving landscape of software development, where artificial intelligence (AI) and supercomputers are pushing the boundaries of what's possible, the importance of secure and robust programming practices cannot be overstated. One foundatio...DiscussC
Jyotiprakash Mishrablog.jyotiprakash.org·May 15, 2024DSA: Basics of Recursion, Pointers, and Dynamic AllocationRecursion in C Recursion in C is a technique where a function calls itself in order to solve a problem. Each time the function calls itself, a new stack frame is created for that call, containing its own set of local variables. This continues until a...Discuss·33 likes·941 readsDSA
João Gabrieljoaojgabriel.hashnode.dev·May 15, 2024Complex Pointers in C Made EasierRequirements Here’s what I’m assuming you can understand: a declaration int *x; initializes a variable x to have the value of a pointer that (in this case) points to an address in memory; at that address there is space allocated for an int (how much ...Discuss·134 readsC