#developer
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,...
The <img> tag is used to embed an image in the web page . Images are not technically inserted into the web page ; but images are linked to web pages ....
You can think of a inline and block elements as brick and wall analogy . Just like brick is a small block whereas when we lay the bricks in a row it...