Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[Q] console programming with Visual C++ .NET

0 views
Skip to first unread message

JongAm Park

unread,
Jun 24, 2004, 4:42:13 PM6/24/04
to
Although MS's help page describes that main function of console programs
is main() as usual, but the actually code generated by the Visual C++
.NET is as follows.

int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}

Why is it _tmain and can I safely change it to main?

0 new messages