Compiling the C code

Compile your C code, e.g.

     C:\> cl /nologo /c /MD vbqp.c
     

The option /MD ensures that the DLL version of the C runtime libraries are used. The option /c ensures that no linking is performed, only an object file is produced, in this case vbqp.obj.