0

Is it possible to compile a completely flat binary file with no structure in VC++? And if so how?

user1454902
  • 750
  • 9
  • 24

1 Answers1

0

Nope.

VisualC++ is a C++ compiler; it takes C++ source code and produces object files. If you want something else, use a different tool.

Christian Stieber
  • 9,954
  • 24
  • 23