Welcome Back to the Backend Development Series!
In the previous post, we laid the groundwork:
✅ We explained what a web server is
✅ We explored the Client-Server Architecture
✅ We saw how JavaScript can run on the backend using Node.j...
Hey everyone!
If you’re ready to dive into the world of backend development, you’re in the right place. This blog kicks off our backend dev series—where we’re going beyond the frontend and digging into the engines powering the web: servers, request...
Introduction
If you’ve worked with arrays and pointers in C++, you might have noticed some confusing behavior. For example, arr == &arr0 works fine, but int p = &arr; throws an error. In this post, I’ll explain what’s going on behind the scenes wi...