代码搜索:stdio

找到约 10,000 项符合「stdio」的源代码

代码结果 10,000
www.eeworm.com/read/186170/8955885

h stdio.h

/*****************************************************************************/ /* STDIO.H v3.70 */ /* Copyright (c) 1993-2001 Texas Instru
www.eeworm.com/read/427173/8970021

h stdio.h

@函数名称: fopen 函数原型: FILE *fopen(char * filename,char * mode); 函数功能: 以mode指定的方式打开名为filename的文件 函数返回: 成功,返回一个文件指针(文件信息区的起始地址),否则返回0 参数说明: filename-文件名称,mode-打开模式:
www.eeworm.com/read/283691/8996231

h stdio.h

#ifndef STDIO_H #define STDIO_H #include "GUI.h" typedef struct { unsigned int f_sys_nr; unsigned int f_mode; ///读还是写 unsigned long f_size; ///读还是写 unsigned lo
www.eeworm.com/read/283691/8996271

c stdio.c

#include "stdio.h" #include "unistd.h" #include "string.h" //---------------------------------------------------------------------------------------------- // // // //------------------------
www.eeworm.com/read/426674/9005488

h stdio.h

/*****************************************************************************/ /* STDIO.H v3.01 */ /* Copyright (c) 1993-1999 Texas Instru
www.eeworm.com/read/382663/9006563

h stdio.h

/* stdio.h: ANSI 'C' (X3J11 Oct 88) library header, section 4.9 */ /* Copyright (C) Codemist Ltd., 1988-1993 */ /* Copyright 1991-1998 ARM Limited. All rights reserved.
www.eeworm.com/read/382588/9017395

h stdio.h

#define getc getch #define getchar getch #define puts(s) {printf(s); putchar(13); putchar(10);} #define putc putchar
www.eeworm.com/read/382584/9019375

c no_stdio.c

void main () { printf ("1001 C & C++ Tips"); }
www.eeworm.com/read/382395/9031552

c no_stdio.c

void main () { printf ("1001 C & C++ Tips"); }
www.eeworm.com/read/283196/9036724

c stdio.c

#include int main() { int c; FILE *in, *out; in = fopen("file.in","r"); out = fopen("file.out","w"); while((c = fgetc(in)) != EOF) fputc(c,out); exit(0);