代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/121905/14731022
c printf.c
www.eeworm.com/read/221564/14737488
c printf.c
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
printf.c
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
www.eeworm.com/read/220509/14798351
h printf.h
#ifndef __PRTF_H__
#define __PRTF_H__
// write your header here
extern void Printf_Init(unsigned int Port_Number);
extern int Printf(char *format,...);
extern void Printf_End();
#endif
www.eeworm.com/read/219019/14897783
c printf.c
#include "types.h"
#include "stat.h"
#include "user.h"
static void
putc(int fd, char c)
{
write(fd, &c, 1);
}
static void
printint(int fd, int xx, int base, int sgn)
{
char buf[16];
char digit
www.eeworm.com/read/217148/14976542
obj printf.obj
www.eeworm.com/read/116022/14992530
c printf.c
www.eeworm.com/read/115263/15019658
txt printf.txt
Convention Constuctor:happy
Convention Constuctor:birthday
Convention Constuctor:
s1 is "happy"; s2 is "birthday"; s3 is empty
The results of comparing s2 and s1:
s2==s1 yields0
s2!=s1 yields1
www.eeworm.com/read/115255/15019768
txt printf.txt
bcc32 fig6_1.cpp employ2.cpp boss1.cpp commis1.cpp piece1.cpp hourly1.cpp
Boss: John Smithearned $8.0e+02
Boss: John Smithearned $8.0e+02
CommissionWorker:Sue Jonesearned $6.5e+02
CommissionWork
www.eeworm.com/read/213813/15124486
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
www.eeworm.com/read/10438/186119
c printf.c
/***
*printf.c - print formatted
*
* Copyright (c) Microsoft Corporation. All rights reserved.
*
*Purpose:
* defines printf() - print formatted data
*
*****************************