Is there a way to convert an EXE to COM file (and vice versa) with C++? I only know the basics of assembly, but I am familiar with Windows and the win32 concept. I know that EXE's contain a file header, that is essentially unneeded. Also, I believe they start at a different memory locale or something to that effect. I don't know if C++ has the low-level power I am looking for.

A_T