⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fo_test.c

📁 cygwin下的包含各种c基本操作的demo程序
💻 C
字号:
//----------------------------------------------------------------// the file operation test file//----------------------------------------------------------------#include "my_common.h"#ifdef __cplusplusextern "C"#endifchar* fo_test(){   	  FILE *fd;	  int ii = 0;	  int jj = 3;	  int c;	  //char aa[100] ;//= {'a','b','c','d',0};	  char *aa = malloc(100);	  //char *bb = "efgh";	  if(aa == NULL)	  return NULL;	      if ( (fd = fopen("fo.txt","r")) == -1)    {  return NULL;}        while ((c = fgetc(fd)) != EOF)    //while(jj--)    {    	  //printf("%d ",c);        aa[ii++] =c;// fgetc(fd);        	    }    printf("\n");    aa[ii]=0;        //*aa="abcde";    printf("the string read from fo.txt are: \n%s \n",aa);    return aa;    	}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -