Advanced Search
Search Results
22 total results found
Operating Systems
Fundamentals
Operating Systems
Processes vs Threads Main : Processes are executed by threads Memory Stack Stack allocation called by function Each function gets its own memory for local variables Freed immediately when function ends Too many function calls exceed stack capacity -> ...
C++ Concepts
C++
Resource Acquisition Is Initialization RAII is a design pattern where resource lifetime is bound to object lifetime. When the object is created, it acquires the resource. When the object is destroyed, it releases the resource automatically via the destructo...
C Concepts
C