0

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

user1454902
  • 740
  • 7
  • 21

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,706
  • 22
  • 21