代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/100926/6264216
cpp wrapper-new-ttcp.cpp
// wrapper-new-ttcp.cpp,v 4.6 2001/03/31 15:14:50 schmidt Exp
/*
* T T C P . C
*
* Test TCP connection. Makes a connection on port 5001
* and transfers fabricated buffers or data copied
www.eeworm.com/read/422575/6327482
cpp cappack.cpp
//#include "stdafx.h"
#include "pcap.h"
#include "inc.h"
//#include "windows.h"
#pragma comment(lib, "wpcap.lib")
#pragma comment(lib, "ws2_32")
void Analyse_IPPacket(char *sMac,char *dM
www.eeworm.com/read/234007/6337921
cpp boardlist.cpp
// BoardList.cpp : implementation file
//
#include "stdafx.h"
#include "demo.h"
#include "BoardList.h"
#include "hikvisionsdk.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
stati
www.eeworm.com/read/371761/6350385
m plspvsm.m
function plspvsm(Model,no_of_int_lv,interval,y_variable)
% plspvsm plots predicted versus measured for a combination of several intervals
%
% Input:
% Model is the output from ipls.m, plsmode
www.eeworm.com/read/371761/6350422
m plspvsm.m
function plspvsm(Model,no_of_int_lv,interval,y_variable)
% plspvsm plots predicted versus measured for a combination of several intervals
%
% Input:
% Model is the output from ipls.m, plsmode
www.eeworm.com/read/494619/6359266
c main.c
//#include
#include
#include
#include
#include
// Standard Input/Output functions
#include
#include
www.eeworm.com/read/491859/6427846
m pb_remove.m
function pb_remove(pb_htalbe, name)
if ~pb_htable.containsKey(pb_keyfilter(name))
disp(sprintf('The name %s is not in the phone book', name))
return
end;
r=input(sprintf('Remove entry %s
www.eeworm.com/read/491859/6427848
m pb_change.m
%修改电话簿
function pb_change(pb_htable, name)
entry=pb_htable.get(pb_keyfilter (name));
if isempty(entry)
disp(sprintf('The name %s is not in the phone book', name));
return;
else
pb_d
www.eeworm.com/read/488662/6483400
cpp rtwnd.cpp
// RTWnd.cpp : implementation file
//
#include "stdafx.h"
#include "SF1553.h"
#include "RTWnd.h"
#include "ModeSelDlg.h"
#include "RTSetupdlg.h"
#include "RTDataDlg.h"
#include "ProgressDlg.
www.eeworm.com/read/484879/6575873
h get_time.h
/*
@ 函数名:get_time 程序员:张军 时间:2009年3月13日
@ 该函数用于读取系统时间,包括年,月,日,时,分,秒。
@ year:传出参数,表示年分的整数。
@ month:传出参数,表示月份的整数。
@ day:传出参数,表示日的整数
@ hour:传出参数,表示时的整数
@ minute:传出参数,表示分的整数
@ second:传出参数,表示秒的整 ...