代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/332098/12779824
c testerror.c
#include "apue.h"
#include
int
main(int argc, char *argv[])
{
fprintf(stderr, "EACCES: %s\n", strerror(EACCES));
errno = ENOENT;
perror(argv[0]);
exit(0);
}
www.eeworm.com/read/332098/12779865
13 figc.13
#include "apue.h"
int
main(void)
{
FILE *fp;
char *p;
daemonize("getlog");
p = getlogin();
fp = fopen("/tmp/getlog.out", "w");
if (fp != NULL) {
if (p == NULL)
fprintf(fp, "no login name\
www.eeworm.com/read/332098/12779897
c getlogin.c
#include "apue.h"
int
main(void)
{
FILE *fp;
char *p;
daemonize("getlog");
p = getlogin();
fp = fopen("/tmp/getlog.out", "w");
if (fp != NULL) {
if (p == NULL)
fprintf(fp, "no login name\
www.eeworm.com/read/245816/12779925
m tffilter.m
function y = tffilter(tfr,x,t,trace);
%TFFILTER Time frequency filtering of a signal.
% Y=TFFILTER(TFR,X,T,TRACE) filters the signal X
% with a non stationary filter.
%
%
% X : input sign
www.eeworm.com/read/144620/12780065
c tcpser.c
/********************************************
** PROGRAM: TcpSer.c **
** AUTHOR: Megan **
** WRITE DATE: 02/03/2001 **
** LAST MODITY
www.eeworm.com/read/332098/12780196
8 fig1.8
#include "apue.h"
#include
int
main(int argc, char *argv[])
{
fprintf(stderr, "EACCES: %s\n", strerror(EACCES));
errno = ENOENT;
perror(argv[0]);
exit(0);
}
www.eeworm.com/read/245644/12786092
c solve.c
#include
#include "lpkit.h"
#include "lpglob.h"
#include "debug.h"
/* Globals used by solver */
static short JustInverted;
static short Status;
static short Doiter;
static short DoInvert;
www.eeworm.com/read/245644/12786179
c lpkit.c
#include "lpkit.h"
#include "lpglob.h"
#include
#include
#include
#include
#define HASHSIZE 10007
/* Globals */
int Rows;
int Columns;
int Sum;
www.eeworm.com/read/245569/12793888
m savegen.m
function y=savegen(fname,wave)
if isempty(fname) | fname==0
warndlg('未设置保存文件名称!','错误');%文件夹出错
return;
else
fp=fopen(fname,'w');
fprintf(fp,'%22.14e\n',wave);
fclose(fp)