0

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

what is the difference between int _tmain(int argc, _TCHAR* argv[]) and int main(int argc, char** argv)?

I am not clear of the difference.

Community
  • 1
  • 1
laksh
  • 2,209
  • 6
  • 21
  • 25

2 Answers2

7

_tmain is the Microsoft-specific wrapper around "main()". You can use it with either 8-bit ASCII or 16-bit Unicode. Here's the MS documentation for it:

http://msdn.microsoft.com/en-us/library/6wd819wh%28v=vs.80%29.aspx

You can also use _tmain, which is defined in TCHAR.h. _tmain will resolve to main unless _UNICODE is defined, in which case _tmain will resolve to wmain.

paulsm4
  • 114,292
  • 17
  • 138
  • 190
2

_tmain is the unicode version of main. I think this is a MS only extension though.

S.S. Anne
  • 15,171
  • 8
  • 38
  • 76
Andrew White
  • 52,720
  • 19
  • 113
  • 137