#cpp
Read more stories on Hashnode
Articles with this tag
1st way int arr[4] 2nd way int arr[n] 3rd way int arr[ ]={23,53,87,56}; last three ways are Stack allocated , i will explain what stack and heap...
In computer programming, variables can be allocated in two different areas of memory: the stack and the heap. Stack allocated variables are stored in...
Recursion is often preferred over loops in the following cases: 1). Recursive data structures: Recursive data structures such as linked lists, trees,...