代码搜索:sprintf
找到约 7,065 项符合「sprintf」的源代码
代码结果 7,065
www.eeworm.com/read/113399/6131669
c sprintf.c
/*
* sprintf - print formatted output on an array
*/
/* $Header: sprintf.c,v 1.2 89/12/18 15:03:52 eck Exp $ */
#include
#include
#include "loc_incl.h"
int
sprintf(c
www.eeworm.com/read/106385/6194267
cxx sprintf.cxx
//===========================================================================
//
// sprintf.cxx
//
// ANSI Stdio sprintf() function
//
//=====================================================
www.eeworm.com/read/101082/6241234
c sprintf.c
#ifndef lint
static char *sccsid = "@(#)sprintf.c 4.1 (ULTRIX) 7/3/90";
#endif
/* ------------------------------------------------------------------ */
/* | Copyright Unpublished, MIPS Computer Syste
www.eeworm.com/read/100603/6265882
c sprintf.c
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not u
www.eeworm.com/read/481239/6645445
c sprintf.c
#include
void main(void)
{
int employee_number = 12345;
char region[] = "SEA";
char filename[64];
sprintf(filename, "%s%d", region, employee_number);
printf("Emp
www.eeworm.com/read/476355/6758051
c sprintf.c
#include
void main(void)
{
int employee_number = 12345;
char region[] = "SEA";
char filename[64];
sprintf(filename, "%s%d", region, employee_number);
printf("Emp
www.eeworm.com/read/409898/11307622
cc sprintf.cc
/*
* Mach Operating System
* Copyright (c) 1991,1990,1989 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* doc
www.eeworm.com/read/409897/11307667
cc sprintf.cc
/*
* Mach Operating System
* Copyright (c) 1991,1990,1989 Carnegie Mellon University
* All Rights Reserved.
*
* Permission to use, copy, modify and distribute this software and its
* doc
www.eeworm.com/read/409272/11337778
c sprintf.c
#include
void main(void)
{
int employee_number = 12345;
char region[] = "SEA";
char filename[64];
sprintf(filename, "%s%d", region, employee_number);
printf("Emp
www.eeworm.com/read/346607/11735837