C語言打開文件,並把文件內容打印

#include <stdio.h> #include <stdlib.h> #include "stdafx.h" #include<windows.h> int main() {  char *pchBuf = NULL;  int  nLen = 0;  FILE *pF  = fopen("123.txt", "r"); //打開文件  fseek(pF, 0, SEEK_END); //
相關文章
相關標籤/搜索