代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/192862/8269103
printf
printf在uCOS51上的移植和浮点数显示
asdjf@163.com 2003/10/20
printf函数是C语言里应用最为广泛的函数之一,我
www.eeworm.com/read/384273/2602529
as printf.as
package br.com.stimuli.string{
/**
* Creates a string with variable substitutions. Very similiar to printf, specially python's printf
* @param raw The string to be substit
www.eeworm.com/read/190618/8439779
c printf.c
/*************************************************************
* File: lib/printf.c
* Purpose: Part of C runtime library
* Author: Phil Bunce (pjb@carmel.com)
* Revision History:
* 970304 Start o
www.eeworm.com/read/190618/8441414
htm printf.htm
PMON - printf Call Tree
printf Call Tree
This page describes what happens when PMON calls printf, or a client
program calls pr
www.eeworm.com/read/189298/8477191
s printf.s
|
| Need to print the three values x, y, and z.
|
movl z,sp@- | Push args on the
movl y,sp@- | stack in reverse
movl x,sp@- | order: format, x,
movl #format,sp@- | y, and z.
jbsr _print
www.eeworm.com/read/290224/8495212
lua printf.lua
-- an implementation of printf
function printf(...)
io.write(string.format(...))
end
printf("Hello %s from %s on %s\n",os.getenv"USER" or "there",_VERSION,os.date())
www.eeworm.com/read/188532/8530859
c printf.c
/*
** The "printf" code that follows dates from the 1980's. It is in
** the public domain. The original comments are included here for
** completeness. They are very out-of-date but might be useful