Home > Back-end >  In the visual studio software fopen when writing c language function calls what is format?
In the visual studio software fopen when writing c language function calls what is format?

Time:09-24

In the visual studio software fopen when writing c language function calls what is format?

CodePudding user response:

All "string" :
_T (" string ")
Or
The TEXT (" string ")
Or
L "string"

CodePudding user response:

#include

.
If (fopen (" c: \ test. TXT ", "a +")
{
Dosomthing
}
.

If it is pure c, as well as in c
  • Related