2019年5月20日 星期一

[c++]開檔讀檔寫檔fopen() fwrite()

//在mfc中使用前請先至Stdafx.h 宣告定義
#define _CRT_SECURE_NO_WARNINGS




---------以下為範例--------------------------

FILE *pFile;
char cbuffer[] = { 'h','e','l' ,'l' ,'o' };
pFile = fopen("hello.txt""w");
if (pFile == NULL)
{
 MessageBox(L"empty");
}
else
{
 fwrite(cbuffer,1, sizeof(cbuffer), pFile);
}
fclose(pFile);


測試環境:2015--mfc



參考以下:
FILE * fopen ( const char * filename, const char * mode );
1    

沒有留言:

張貼留言

[SQL]顯示千分位與小數顯示

  CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1  (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...