代码搜索:stdio
找到约 10,000 项符合「stdio」的源代码
代码结果 10,000
www.eeworm.com/read/437123/7754643
h stdio.h
/************************************************************/
/* Version 2.20.01 */
/************************************************************/
/******
www.eeworm.com/read/435817/7783595
h stdio.h
#ifndef __STDIO_H__
#define __STDIO_H__
#define NULL 0
#define EOF -1
#define BUFSIZ 256
#define FOPEN_MAX 25
#define TMP_MAX 25
#define _IOWRT 0x0001
#define _IOSTRG 0x0002
#define _I
www.eeworm.com/read/389794/7805416
h stdio.h
www.eeworm.com/read/399963/7819244
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);
www.eeworm.com/read/199757/7824362
h stdio.h
/****************************************************************
Standard Input/Output header.
NOTE: The library has no real notion of input/output.
The type FILE and the defines stdout and s
www.eeworm.com/read/199509/7847117
h stdio.h
/*****************************************************************************/
/* STDIO.H v3.50 */
/* Copyright (c) 1996-1999 Texas Instrume
www.eeworm.com/read/199508/7847165
h stdio.h
/*****************************************************************************/
/* STDIO.H v3.50 */
/* Copyright (c) 1996-1999 Texas Instrume
www.eeworm.com/read/199505/7847318
h stdio.h
/*****************************************************************************/
/* STDIO.H v3.50 */
/* Copyright (c) 1996-1999 Texas Instrume
www.eeworm.com/read/199474/7849334
h stdio.h
/*
*-----------------------------------------------------------------------------
* Copyright (c) KEIL ELEKTRONIK GmbH and Franklin Software, Inc., 1987-1992
*----------------------------------