代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/126402/14425333
doc printf.doc
www.eeworm.com/read/126160/14443081
c printf.c
www.eeworm.com/read/126160/14443199
doc printf.doc
www.eeworm.com/read/125821/14459349
c printf.c
www.eeworm.com/read/125821/14459457
doc printf.doc
www.eeworm.com/read/225618/14529701
h printf.h
#ifndef _PRINTF_H
#define _PRINTF_H
#include
extern int vsprintf(char * buf, const char * fmt, va_list ap);
extern int sprintf(char * buf, const char * fmt, ...);
#endif
www.eeworm.com/read/224430/14593744
c printf.c
/****************************************************************************
*
* MODULE: printf.c
*
* COMPONENT: $RCSfile: printf.c,v $
*
* VERSION: $Name:
www.eeworm.com/read/224430/14593759
h printf.h
/*****************************************************************************
*
* MODULE: printf.h
*
* COMPONENT: $RCSfile: printf.h,v $
*
* VERSION: $N
www.eeworm.com/read/223835/14615934
c printf.c
#include
int main ()
{
int a = 7, b = 4;
double big = 12345.6, small = 1.23456, x;
char init = 'z';
printf("a is %d and b is %d\n", a, b);
printf("Their sum is %d or %o in octal \n",
www.eeworm.com/read/223007/14664719
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