代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/130467/14192372
c testsess.c
/****************************************************************************
* *
* cryptlib Secure Session Test Routines *
* Copyright Peter Gutmann 1998-2003
www.eeworm.com/read/130467/14192447
c testlib.c
/****************************************************************************
* *
* cryptlib Test Code *
* Copyright Peter Gutmann 1995-2003 *
*
www.eeworm.com/read/130467/14192483
c testll.c
/****************************************************************************
* *
* cryptlib Low-level Test Routines *
* Copyright Peter Gutmann 1995-2003 *
*
www.eeworm.com/read/130467/14192511
c testdev.c
/****************************************************************************
* *
* cryptlib Device Test Routines *
* Copyright Peter Gutmann 1997-2003 *
*
www.eeworm.com/read/232307/14199006
mkd
#!/bin/bash
#
# mkd -- a script to create the device special files for the PARIDE subsystem
#
# block devices: pd (45), pcd (46), pf (47)
# character devices: pt (96), pg (97)
#
function mkdev {
www.eeworm.com/read/232265/14200191
c bbppi.c
#include
#include
#include
double bbp(int n,int k,int l)
{
int i;
long b=1;
double c=1;
if(n>k)
{
for(i=n-k;i!=0;i--)
b=(b*16+0)%(8*k+l);
retu
www.eeworm.com/read/130071/14209365
txt 源码.txt
PROTO.H
NEGENTROPY negentropy ( REAL **, UINT, NODE*, UINT );
void print_tree ( NODE* , CHAR** );
void free_tree ( NODE * );
NODE* ID3 ( MATRIX * , NODE* , UINT , UINT );
void err_exit ( CHAR* ,
www.eeworm.com/read/129922/14216870
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
www.eeworm.com/read/129922/14216975
c memcmp.c
#include
#include
void main(void)
{
char *a = "AAA";
char *b = "BBB";
char *c = "aaa";
printf("Comparing %s and %s with memcmp %d\n",
a, b, memcmp(a, b,
www.eeworm.com/read/129922/14217012
c two_line.c
#include
void main ()
{
printf ("This is line one.\n");
printf ("This is the second line.");
}