fseek函式是用來設定檔案的當前讀寫位置。
1. 標頭檔案:
stdio.h
2. 函式原型:
int fseek(file *stream, long offset, int fromwhere);
引數:簡言之:
3. 函式功能:
把stream的檔案 讀寫位置指標 移到指定的位置。
4. 描 述:
5. 程式例:
例1:
#include
#include
#include
//修改waqexpoconfig.txt檔案的**值
int writeexpo(int &expo, char *filename)
//修改waqexpoconfig.txt檔案內容(**值)
//設定檔案的當前讀寫位置:fp指向的位置是從檔案開始後移0個位元組
fseek(fp, 0, seek_set);
//寫檔案:從fp指標指向的位置開始,寫入:"expoval : [%d]", expo
fprintf_s(fp, "expoval : [%d]", expo);
//關閉waqexpoconfig.txt檔案
fclose(fp);
//列印expo值
printf("expoval : [%d]\n", expo);
return0;}
//通過鍵盤控制 **值的改變
int showimg(mat &tempimg)
; if (key == 27) //escape
break;
}return0;}
int main(void)
如何取得Android手機的當前語言設定
1.首先,如果要程式自動適應系統語言進行轉變,可以在res下新增相應的語言資料夾 如 新增中文,則資料夾命名為values zh rcn,如果不清楚需要的名字可以到 e android sdk windows platforms android 8 data res,如這樣的資料夾下尋找。這樣就可以...
獲取並設定HTML5 Video的當前進度
console.log video.currenttime 25.431747video.currenttime 0 restartapi 介面很容易理解,而且是自解釋的 self explanatory 你仍然需要處理 second 來指定時間,包括內在實際的和外在顯示的 both inward ...
delphi 獲取可執行檔案的當前路徑
expandfilename 返回檔案的全路徑 含驅動器 路徑 extractfileext 從檔名中抽取副檔名 extractfilename 從檔名中抽取不含路徑的檔名 extractfilepath 從檔名中抽取路徑名 extractfiledir 從檔名中抽取目錄名 extractfiled...