Did you like how we did? Rate your experience!

4.5

satisfied

46 votes

How do you solve a virtual memory problem using C program ?

C or any other programming language has absolutely no idea about any virtual memory.Only what C knows in memory allocated by malloc or on stack using alloca. Thats it! To make question understandable explain problem: Is it CPU virtual memory or OS virtual memory? What problem is? If C needs more control over memory it must use OS API.

100%
Loading, please wait...