代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/320652/3545111
c nldbl-fprintf.c
#include "nldbl-compat.h"
attribute_hidden
int
fprintf (FILE *stream, const char *fmt, ...)
{
va_list arg;
int done;
va_start (arg, fmt);
done = __nldbl_vfprintf (stream, fmt, arg);
va_end
www.eeworm.com/read/287081/4030497
c,v fprintf.c,v
head 1.1;
access;
symbols;
locks
dls:1.1; strict;
comment @ * @;
1.1
date 97.09.21.19.27.40; author dls; state Dist;
branches;
next ;
desc
@@
1.1
log
@pre-3e code
@
text
@/* fprintf.c - fprintf
www.eeworm.com/read/393395/2474667
m my_fprintf.m
function my_fprintf(fid, varargin)
%This function is needed because Matlab R2006B does not support fprintf with
%fid=0, i.e., no output. This is a workaround.
%
%Internal function of SeDuMi.
%
www.eeworm.com/read/367182/2853148
c nldbl-fprintf.c
#include "nldbl-compat.h"
attribute_hidden
int
fprintf (FILE *stream, const char *fmt, ...)
{
va_list arg;
int done;
va_start (arg, fmt);
done = __nldbl_vfprintf (stream, fmt, arg);
va_end
www.eeworm.com/read/366702/2878898
c fprintf-1.c
#include
#include
int
main (void)
{
#define test(ret, args...) \
fprintf (stdout, args); \
if (fprintf (stdout, args) != ret) \
abort ();
test (5, "hello");
test (6
www.eeworm.com/read/200130/15440920
m use_fprintf.m
%将一个平方根表写入s_table.dat
a=1:10;
b=[a;sqrt(a)];
fid=fopen('s_table.dat','w');
fprintf(fid,'table of square root:\n');
fprintf(fid,'%2.0f %6.4f\n',b);
fclose(fid);
www.eeworm.com/read/102394/15783025
c fprintf_source.c
/* block/fprintf_source.c
*
* Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough
*
* This program is free software; you can redistribute it and/or modify
* it under the term