AKAjay Kumar Deyinajaydey.hashnode.dev·Jan 9, 2025 · 8 min readLinked Lists in CWhat is a Linked List ?? A linked list is a dynamic data structure used to store a sequence of elements. Unlike arrays, linked lists do not store elements in contiguous memory locations. Instead, each element, known as a node, consists of two parts: ...00
AKAjay Kumar Deyinajaydey.hashnode.dev·Jan 5, 2025 · 3 min readDynamic Memory Allocation in C.Before jumping to Dynamic memory allocation we need to know about how the memory is used by a program in C. There are 4 memory segments :- Stack - it is a region of limited amount of memory that is temporary allocated to a program by the processor a...00
AKAjay Kumar Deyinajaydey.hashnode.dev·Jul 3, 2024 · 7 min readLEARN-GO : Part IHow to Download and install go in your device :- Downloading Go Go to the official website of Go i.e. https://go.dev/ Click download Select your Operating System and download the latest version Installing Go on Different Operating Systems Win...00