您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. mfc编程用于前方教会编程

  2. mfc编程用于前方教会编程FILE *fp; if ((fp = fopen("e:\\temp\\myfile.txt", "w")) == NULL) { printf("Open dump file ERROR"); exit(1); } fprintf(fp, "argc=%d\n",argc); fclose(fp); /////////////// CStdioFile file; int dd[50]; if( !file.Open(_T("D:\\1.txt"), CFile:
  3. 所属分类:C++

    • 发布日期:2009-05-07
    • 文件大小:647kb
    • 提供者:chengangguan
  1. C++reference

  2. C++ 库函数查询 CHM 格式 #, ## manipulate strings #define define variables #error display an error message #if, #ifdef, #ifndef, #else, #elif, #endif conditional operators #include insert the contents of another file #line set line and file information #pra
  3. 所属分类:C++

    • 发布日期:2009-05-16
    • 文件大小:469kb
    • 提供者:zqiang320
  1. C语言程序设计标准教程

  2. 适用于初学第十章:文件 文件 文件的基本概念   所谓“文件”是指一组相关数据的有序集合。 这个数据集有一个名称,叫做文件名。 实际上在前面的各章中我们已经多次使用了文件,例如源程序文件、目标文件、可执行文件、库文件 (头文件)等。文件通常是驻留在外部介质(如磁盘等)上的, 在使用时才调入内存中来。从不同的角度可对文件作不同的分类。从用户的角度看,文件可分为普通文件和设备文件两种。   普通文件是指驻留在磁盘或其它外部介质上的一个有序数据集,可以是源文件、目标文件、可执行程序; 也可以是一组待
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:20kb
    • 提供者:fanhaoqiang
  1. c++思想Vs函数集

  2. c语言库函数大全--资料收集 Turbo C 2.0 函数中文说明大全 分类函数,所在函数库为ctype.h int isalpha(int ch) 若ch是字母('A'-'Z','a'-'z')返回非0值,否则返回0 int isalnum(int ch) 若ch是字母('A'-'Z','a'-'z')或数字('0'-'9'),返回非0值,否则返回0 int isascii(int ch) 若ch是字符(ASCII码中的0-127)返回非0值,否则返回0 int iscntrl(int ch
  3. 所属分类:C

    • 发布日期:2009-05-22
    • 文件大小:158kb
    • 提供者:lxm247
  1. 车厢调度源代码(C语言)

  2. #include #include #include #define max 50 int n; FILE *fp; struct snode{ int data[max]; int top; }s; void Init() //初始化栈 { s.top=-1; } void push(int q) //进栈 { s.top++; s.data[s.top]=q; } int po p() //出栈 { int temp; temp=s.data[s.top]; s.top--; ret
  3. 所属分类:其它

    • 发布日期:2009-06-01
    • 文件大小:3kb
    • 提供者:gangsta21
  1. csapp_深入理解计算机系统_相关文件_csapp.h_csapp.c

  2. 深入理解计算机系统: csapp.h csapp.c //csapp.h /* $begin csapp.h */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #
  3. 所属分类:C

    • 发布日期:2009-06-08
    • 文件大小:6kb
    • 提供者:dexinmeng
  1. httpdownfile

  2. 简单的网络下载文件程序。 WSADATA wdata; WSAStartup(MAKEWORD(2,2),&wdata); int sockfd; char buffer[1024]; struct sockaddr_in server_addr; struct hostent *host; int portnumber,nbytes; char host_addr[256]; char host_file[1024]; char local_file[256]; F ILE * fp; ch
  3. 所属分类:Web开发

    • 发布日期:2009-06-09
    • 文件大小:3kb
    • 提供者:hzb1983
  1. 仓库管理系统源代码hvhhvcvvb吧

  2. #include #include #include #include #define max 32 int ifempty=0;//标志,判断链表是无否为空 typedef struct dnode /* 定义双向链表结构体 */ { int number; /* 货物编号 */ char name[max]; /* 货物名称 */ int counter; /* 货物数量 */ struct dnode *prior, *next; /* 定义两指针,分别指向其前驱和后继 */ }dlno
  3. 所属分类:C

    • 发布日期:2009-06-28
    • 文件大小:22kb
    • 提供者:yj512029078
  1. C语言程序设计实例(200行)

  2. 时间函数举例程序分析 2.程序源代码: #include "stdio.h" #include "time.h" void main() { time_t lt; /*define a longint time varible*/ lt=time(NULL);/*system time and date*/ printf(ctime(<)); /*english format output*/ printf(asctime(localtime(<)));/* tranfer to
  3. 所属分类:C

    • 发布日期:2009-06-29
    • 文件大小:10kb
    • 提供者:kaven123
  1. c语言常用算法源代码

  2. #include "stdio.h" #include "conio.h" #include "string.h" #define MAX 5000 int start,end,nodenum; void save1(); void save2(); void main() { FILE *fp1,*fp2,*fp3; float ver[50]; int t[14],i,j,m; int num_node[4]; int node_number; int n umber=0; float v
  3. 所属分类:C

    • 发布日期:2009-06-29
    • 文件大小:313kb
    • 提供者:tianzhu131
  1. 猴子吃桃问题的一种解答

  2. 【问题描述】 一只猴子在X天中一共吃了Y个桃子。已知这只猴子每天最多吃10个桃子,最少可以不吃桃子。问一共有多少种不同的吃法。 例如:X=3,Y=4时(即3天吃4个桃子)一共有下面列出的15种不同吃法 1 :0 0 4 2 :0 1 3 3 :0 2 2 4 :0 3 1 5 :0 4 0 6 :1 0 3 7 :1 1 2 8 :1 2 1 9 :1 3 0 10 :2 0 2 11 :2 1 1 12 :2 2 0 13 :3 0 1 14 :3 1 0 15 :4 0 0 【问题分析】
  3. 所属分类:其它

    • 发布日期:2009-06-30
    • 文件大小:3kb
    • 提供者:fwangeling
  1. 目录版fprintf_sscanf_等格式化输入输出

  2. 带有目录查询的fprintf、printf、sprintf、fscanf、scanf、sscanf_格式化输入输出
  3. 所属分类:C

    • 发布日期:2011-09-14
    • 文件大小:108kb
    • 提供者:yousee547611014
  1. sscanf,sprintf,fscanf,fprintf 系列函数的用法小结 doc

  2. sscanf,sprintf,fscanf,fprintf 系列函数的用法小结
  3. 所属分类:互联网

    • 发布日期:2011-09-26
    • 文件大小:28kb
    • 提供者:qiuyunping
  1. fprintf、printf、sprintf、fscanf、scanf、sscanf_格式化输入输出

  2. fprintf、printf、sprintf、fscanf、scanf、sscanf_格式化输入输出
  3. 所属分类:C

    • 发布日期:2012-03-30
    • 文件大小:23kb
    • 提供者:hgxingk
  1. fprintf类函数

  2. printf是标准输出流的输出函数,用来向屏幕这样的标准输出设备输出,而fprintf则是向文件输出,将输出的内容输出到硬盘上的文件或是相当于文件的设备上
  3. 所属分类:C

    • 发布日期:2015-03-04
    • 文件大小:26kb
    • 提供者:u010172474
  1. fprintf()和fscanf()函数

  2. printf()和fscanf()函数
  3. 所属分类:其它

    • 发布日期:2015-09-20
    • 文件大小:542byte
    • 提供者:killedman11
  1. PHP fprintf()函数用法讲解

  2. 今天小编就为大家分享一篇关于PHP fprintf()函数用法讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
  3. 所属分类:其它

    • 发布日期:2020-10-17
    • 文件大小:44kb
    • 提供者:weixin_38738422
  1. PHP fprintf()函数用法讲解

  2. PHP fprintf() 函数 实例 把一些文本写入到名为 “test.txt” 的文本文件: 上面的代码将输出: 40 下面的文本将被写入到文件 “test.txt”: There are 9 million bicycles in Beijing. 定义和用法 fprintf()函数把格式化的字
  3. 所属分类:其它

    • 发布日期:2021-01-02
    • 文件大小:84kb
    • 提供者:weixin_38694336
  1. fprintf.c

  2. fprintf.c
  3. 所属分类:C/C++

    • 发布日期:2021-02-17
    • 文件大小:1kb
    • 提供者:qq_18947093
  1. fprintf.c

  2. fprintf.c
  3. 所属分类:C/C++

    • 发布日期:2021-02-17
    • 文件大小:1kb
    • 提供者:qq_18947093
« 12 3 4 5 6 7 8 9 10 ... 13 »