代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/461848/1549636
m fprintf_example.m
x = 2 * ( 1 - 2*i )^3;
str = ['disp: x = ' num2str(x)];
disp(str);
fprintf('fprintf: x = %8.4f\n',x);
www.eeworm.com/read/248727/4465089
d fprintf.o.d
src/output/fprintf.o.d: \
/opt/ecos/ecos-2.0.57/packages/language/c/libc/stdio/current/src/output/fprintf.cxx \
/home/Administrator/FFT/target/PLCcore-CF54/ecos/ecos_install/include/pkgconf/libc_s
www.eeworm.com/read/237551/4625962
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/167728/5452915
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
www.eeworm.com/read/162614/5527495
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