代码搜索:printf

找到约 10,000 项符合「printf」的源代码

代码结果 10,000
www.eeworm.com/read/140797/7147024

c printf.c

/* * printf.c */ #include #include #define BUFFER_SIZE 16384 int printf(const char *format, ...) { va_list ap; int rv; va_start(ap, format); rv = vfprintf(stdout, fo
www.eeworm.com/read/464225/7167408

html printf.html

www.eeworm.com/read/464225/7167454

html printf.html

www.eeworm.com/read/463005/7190734

h printf.h

/********************************************************************** *
www.eeworm.com/read/457278/7329243

c printf.c

/*** *printf.c - print formatted * * Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved. * *Purpose: * defines printf() - print formatted data * ******************
www.eeworm.com/read/452710/7434800

o printf.o

www.eeworm.com/read/452710/7434813

c printf.c

/* printf.c - printf */ #define OK 1 #define CONSOLE 0 /*------------------------------------------------------------------------ * printf -- write formatted output on CONSOLE *--------
www.eeworm.com/read/450150/7489802

c printf.c

#include "vsprintf.h" #include "string.h" #include "printf.h" extern void putc(unsigned char c); extern unsigned char getc(void); #define OUTBUFSIZE 1024 #define INBUFSIZE 1024 static unsigned cha
www.eeworm.com/read/450150/7489807

h printf.h

#ifndef _PRINTF_H #define _PRINTF_H int printf(const char *fmt, ...); int scanf(const char * fmt, ...); #endif /* _PRINTF_H */
www.eeworm.com/read/450121/7490365

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())