-1

Possible Duplicate:
What is the difference between _tmain() and main() in C++?

I often see people using massively visual studio to write programs in c++. So massively that they think that "visual c++" is the programming language thay are using. This is how often I see to declare a main:

int _tmain(int argc, _TCHAR* argv[])

What's the purpose of that? is that only to make fellow-windowers 's programs non-portable on other platforms?

Community
  • 1
  • 1
Ramy Al Zuhouri
  • 21,580
  • 26
  • 105
  • 187

1 Answers1

1

Nothing. Just not experienced programmers and Microsoft thinking it is the king of the world, he can adjust standards to it's own liking.

More:

What is the difference between _tmain() and main() in C++?

Community
  • 1
  • 1
Rok Kralj
  • 46,826
  • 10
  • 71
  • 80