1.
int _tmain(int argc, _TCHAR* argv[])
2.
wprintf(L" ----------\n");
This is syntax that I get when I make any Win32 Console Application in Visual C++.
I cannot understand what are _tmain(), argc, _TCHAR* argv[]. Till now I have been dealing with void main() and int main().
I also want to know what is 'wprintf' and 'L' in that second line of code.
Please help !!!
Thanx ... !
:)