代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/481249/6646535
c 数字移动.c
#include
int a[]={0,1,2,5,8,7,6,3};
int b[9];
int c[9];
int count=0;
main()
{
int i,j,k,t;
void print();
printf("Please enter original order of digits 1~8: ");
for(i=0;i
www.eeworm.com/read/481033/6656240
c lowlvl.c
/****************************************************************************
* *
* cryptlib Low-level Test Routines *
* Copyright Peter Gutmann 1995-2004 *
*
www.eeworm.com/read/481033/6656353
c devices.c
/****************************************************************************
* *
* cryptlib Device Test Routines *
* Copyright Peter Gutmann 1997-2006 *
*
www.eeworm.com/read/481045/6656846
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/481045/6656905
c pow10.c
#include
#include
void main (void)
{
printf("10 raised to -1 is %f\n", pow10(-1));
printf("10 raised to 0 is %f\n", pow10(0));
printf("10 raised to 1 is %f\n", pow
www.eeworm.com/read/481045/6656926
c map_rand.c
#include
#include
void main(void)
{
int i;
printf("Values in the range 0.0 through 1.0\n");
for (i = 0; i < 5; i++)
printf("%f\n", rand() / 32767.0);
www.eeworm.com/read/480815/6662193
c bch3.c
/*
* File: bch3.c
* Title: Encoder/decoder for binary BCH codes in C (Version 3.1)
* Author: Robert Morelos-Zaragoza
* Date: August 1994
* Revised: June 13, 1997
*
* =============== E
www.eeworm.com/read/480818/6662279
c bch3.c
/*
* File: bch3.c
* Title: Encoder/decoder for binary BCH codes in C (Version 3.1)
* Author: Robert Morelos-Zaragoza
* Date: August 1994
* Revised: June 13, 1997
*
* ===========
www.eeworm.com/read/480849/6662510
cpp passref.cpp
// Chapter 4 - Program 3 - PASSREF.CPP
#include
#include
void fiddle(int in1, int &in2);
int main()
{
int count = 7, index = 12;
c
www.eeworm.com/read/480849/6662599
cpp passref.cpp
// Chapter 4 - Program 3 - PASSREF.CPP
#include
#include
void fiddle(int in1, int &in2);
int main()
{
int count = 7, index = 12;
c