|
-
May 17th, 1999, 03:35 AM
#1
how to use fwrite() in VC++?
can somebody help me with this function in VC++?
Thankx
From Alan.
From Alan.
-
May 17th, 1999, 06:24 AM
#2
Re: how to use fwrite() in VC++?
FILE *FPTR = NULL;
unsigned char Chaine [256] = { "" };
strcpy ( Chaine, "It's not more complicated !\n Hello from france." );
FPtr = fopen ( "c:\Tmp.bin", "wb" );
fwrite ( Chaine, 1, strlen ( Chaine ), FPtr );
fclose ( FPtr );
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|