From 2bdbb99580c4b5b679a8ce492b070ade52307fc8 Mon Sep 17 00:00:00 2001 From: Amrutgarbhe1999 <66869313+Amrutgarbhe1999@users.noreply.github.com> Date: Thu, 1 Oct 2020 08:23:02 +0530 Subject: [PATCH] Update index.md --- notes/L10/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/L10/index.md b/notes/L10/index.md index 40e60e5..d85f648 100755 --- a/notes/L10/index.md +++ b/notes/L10/index.md @@ -30,7 +30,7 @@ A stack is a Last In First Out (LIFO) queue. Push and Pop are our two operation As you push more items onto the stack, the more space in memory it occupies - it grows. As you pop items off of the stack, it shrinks. The core purpose of stacks is to allow for the temporary storage of values at runtime for later retrieval. -In the MSP430, the stack grows upward - from higher locations in memory to lower locations in memory. +In the MSP430, the stack grows upward - from higher locations in memory to lower locations in memory.it is basically most used for the Data structure and algorithm project.Stack are define in many ways in other languages. basically stack is use and most use in c and c++ better. **Draw memory map.**