代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/478322/6714621
c adc832.c
//********************************************************************
//
// Author : ADI
//
// Date : December 2002
//
// File : Adc832.c
//
// Hardware : ADuC8
www.eeworm.com/read/478178/6721073
c 1.c
#include
#include
#include
#include
#include
#define Ni 1
#define Nm 4
#define No 1
#define L 100
#define Enom 0.001
#define loopma
www.eeworm.com/read/478234/6722183
c os_cpu_c.c
#define OS_CPU_GLOBALS
#include "includes.h"
/*
*********************************************************************************************************
* INI
www.eeworm.com/read/477707/6732259
cpp 24point.cpp
#include
#include
bool flag;
int max(int a,int b)
{
if (a>b) return a;
else return b;
}
void run(int n,float b[],char x[4][20])
{
float result,c[4];
char y[4][
www.eeworm.com/read/477716/6732800
c fig10_53.c
#include
#define NotAVertex (-1)
typedef int TwoDimArray[ 4 ][ 4 ];
/* START: fig10_53.txt */
/* Compute All-Shortest Paths */
/* A[ ] contains the
www.eeworm.com/read/477716/6732823
c fig10_46.c
#include
#include
typedef long int TwoDimArray[ 5 ][ 5 ];
#define Infinity INT_MAX
/* START: fig10_46.txt */
/* Compute optimal ordering
www.eeworm.com/read/476738/6749105
16 fig18.16
#include "apue.h"
int
main(void)
{
char *name;
if (isatty(0)) {
name = ttyname(0);
if (name == NULL)
name = "undefined";
} else {
name = "not a tty";
}
printf("fd 0: %s\n", name);
if (
www.eeworm.com/read/476738/6749531
c t_ttyname.c
#include "apue.h"
int
main(void)
{
char *name;
if (isatty(0)) {
name = ttyname(0);
if (name == NULL)
name = "undefined";
} else {
name = "not a tty";
}
printf("fd 0: %s\n", name);
if (
www.eeworm.com/read/476785/6750346
c ex15.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include
www.eeworm.com/read/476355/6757874
c address.c
#include
void main(void)
{
int count = 1;
float salary = 40000.0;
long distance = 1234567L;
printf("Address of count is %x\n", &count);
printf("Address of salary i