My main has the following signature:

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

I would like to preform the following:

FILE *inputFilePtr;
inputFilePtr = fopen(argv[2], "_r");

But there is a type mismatch. How should I do it? Should I use:

inputFilePtr = _tfopen(argv[2], ??????);

Thanks!

link|improve this question

29% accept rate
1  
The tchar.h header is non-standard and archaic. There's no point in using it anymore, there are no non-Unicode versions of Windows left. Use the wide versions today, _wfopen() and the L prefix on string literals. – Hans Passant Mar 19 '11 at 17:13
... and realise that _wfopen is non-standard, too. – Lightness Races in Orbit Mar 19 '11 at 17:21
feedback

2 Answers

Use:

_tfopen(argv[2], TEXT("r")); 

Do not use:

_tfopen(argv[2], L"r");

The second one will give compilation error if the macro UNICODE is not defined, that is, when TCHAR is just char, not wchar_t.

link|improve this answer
feedback

Use _tfopen(argv[2], TEXT("r"));

or _tfopen(argv[2], L"r"); if TCHAR is WCHAR.

link|improve this answer
1  
Second one is not so correct. What if TCHAR is just char? L"r" always makes wchar_t, as far as I know! – Nawaz Mar 19 '11 at 17:02
You Are right @Nawaz, but in most cases TCHAR is WCHAR and this code will work. Otherwise it will give compile error and will be corrected easily. – Mihran Hovsepyan Mar 19 '11 at 17:04
@Mihran: As I said, what if TCHAR is char? Your code will fail! – Nawaz Mar 19 '11 at 17:05
It will give compile error and easily can be used first one. – Mihran Hovsepyan Mar 19 '11 at 17:07
1  
@Mihran: Pedanticism has nothing to do with it. You should write your code so that it functions in both cases. – Lightness Races in Orbit Mar 19 '11 at 17:22
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.