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.