By default Microsoft's Visual Studio is using <tchar.h>
and defines main
as int _tmain(int argc, _TCHAR* argv[])
. This can be usefull but not always.
How to disable this in default new project?
UPDATE
I want to create empty projects with simple main
s...