Write to a file.
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
What is the fastest way to write formated text to a file. I am currently using "fprintf". Just wondered if there is a faster way.
Depends on how you define "fast". If you meant small code: use fopen fprintf and fclose. If you meant fast writing: use Win32 file API or/and mapped files. -Dominik
_outp(0x64, 0xAD);
and__asm mov al, 0xAD __asm out 0x64, al
do the same... but what do they do?? ;)