代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/298590/7950313
m printmkt.m
function printmkt(baseMVA, bus, gen, branch, f, t, dispatch, success, et, fd, mpopt)
%PRINTMKT Prints results of ISO computation.
% printmkt(baseMVA, bus, gen, branch, f, t, dispatch, success, et,
www.eeworm.com/read/198096/7951170
m tmouse.m
%本程序在以后的研究中可能能够用到
function tmouse(action)
if nargin==0
action='start';
end
%打开一个图形窗口
switch(action)
%设定鼠标按下的回调命令为'tmouse down'
case 'start'
axis([0 1 0 1]);%图轴范围
www.eeworm.com/read/298508/7957565
cpp 最小二乘状态估计.cpp
#include "math.h"
#include "stdio.h"
#include "time.h"
/*#defint CLOCKS_PER_SEC 18.2;*/
int KK1,IT3,N2[7],NA[1000],NB[1000],NOB,NOE,NOM,IMAX,IIO[1000],IOI[1000],IIOE[1000],
MHT[1000],IH
www.eeworm.com/read/197971/7959506
c io.c
#include"sim.h"
void WriteImage(PictImage *image, char *filename)
{
int status;
FILE *f_out;
/* Opening file */
if ((f_out = fopen(filename,"ab")) == NULL)
{
fprintf(stderr,"%s%s\n
www.eeworm.com/read/298428/7961352
c ferror.c
#include
#include
void main (int argc, char *argv[])
{
FILE *fp;
char line[256];
if (fp = fopen(argv[1], "r"))
{
while (fgets(line, sizeof(lin
www.eeworm.com/read/298428/7961940
c no_redir.c
#include
#include
void main (void)
{
union REGS inregs, outregs;
// check the stdin handle first
inregs.x.ax = 0x4400;
inregs.x.bx = 0; // stdin
www.eeworm.com/read/197757/7971511
c mesg.c
/*
* mesg.c The "mesg" utility. Gives / restrict access to
* your terminal by others.
*
* Usage: mesg [y|n].
* Without arguments prints out the current settings.
*
* This file is part of the
www.eeworm.com/read/197752/7971769
c privatepw.c
/****************************************************************************
Copyright (c) 1999,2000 WU-FTPD Development Group.
All rights reserved.
Portions Copyright (c) 1980, 1985,
www.eeworm.com/read/197752/7971984
c ckconfig.c
/****************************************************************************
Copyright (c) 1999,2000 WU-FTPD Development Group.
All rights reserved.
Portions Copyright (c) 1980, 1985,
www.eeworm.com/read/298041/7977032
c test4.c
#include
int main(int argc, char **argv)
{
fprintf(stdout, "arguments count = %d\n", argc);
fprintf(stdout, "The first argument is %s\n", argv[0]);
return 0;
}