代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/106385/6194240
c sprintf2.c
//=================================================================
//
// sprintf2.c
//
// Testcase for C library sprintf()
//
//=========================================================
www.eeworm.com/read/261198/11659759
m sprintf_intvec.m
function s = sprintf_intvec(v)
% SPRINTF_INTVEC Print a vector of ints as comma separated string, with no trailing comma
% function s = sprintf_intvec(v)
%
% e.g., sprintf_intvec(1:3) returns '1,2,3'
www.eeworm.com/read/345247/11824291
c tst_sprintf.c
#include
void tst_sprintf (void) {
char buf [100];
int n;
int a,b;
float pi;
a = 123;
b = 456;
pi = 3.14159;
n = sprintf (buf, "%f\n", 1.1);
n += sprintf
www.eeworm.com/read/129726/14231098
c sprintf2.c
#include
#include
#include
void main()
{
int gd=0,gm;
float f;
char str[128];
f=3.141592;
initgraph(&gd,&gm,"");
sprintf(str,"pie is %f",f);
settextstyle(1,
www.eeworm.com/read/125782/14464115
c safe_sprintf.c
/****************************************************************************
* Copyright (c) 1998-2001,2003 Free Software Foundation, Inc. *
*