代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/338271/12315419
c lsmod.c
/* lsmod.c: insert a module into the kernel.
Copyright (C) 2002 Rusty Russell, IBM Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of
www.eeworm.com/read/150017/12325401
c gen_ccsds_tal.c
/* Conversion lookup tables from conventional alpha to Berlekamp's
* dual-basis representation. Used in the CCSDS version only.
* taltab[] -- convert conventional to dual basis
* tal1tab[] -- conve
www.eeworm.com/read/338060/12326501
cpp graphcolor.cpp
#include "stdio.h"
int c[6][6]; //数组c[n+1][n+1]存储顶点之间边的情况
int n=5; //n个顶点
int color[6]; //数组color[n+1]表示顶点的着色情况
int m=3; //m种颜色
bool OK(int k);
void main()
{
//初始化边的
www.eeworm.com/read/338037/12327113
c bp.c
#include "math.h"
#include "time.h"
#include "stdio.h"
#include "stdlib.h"
#define Ni 1
#define Nm 4
#define No 1
#define L 100
#define Enom 0.02
#define loopmax 100000
#define e 2.71828
do
www.eeworm.com/read/338036/12327208
c heapsort.c
#include
#define MARK 0
static a[8] = {MARK,25,4,36,1,60,10,58,};
int count = 1;
void heap(int n);
void adjust(int i,int n);
int main(void)
{
int i;
printf("源数据为:");
for(i =
www.eeworm.com/read/338034/12327354
c countdown.c
/* Countdown program. */
# include
# include
# include
# include
void main(int argc, char* argv[])
{
int disp, count;
if(argc < 2)
{
printf
www.eeworm.com/read/338034/12327392
c asterisk.c
# include
void main()
{
int i, j, k;
/* 变量i从0到4,表示所画菱形图的第一至第五行 */
for(i = 0; i
www.eeworm.com/read/338034/12327414
c twodim.c
# include
void main()
{
int array[16][16];
int i, j, k, m, n;
/* 变量初始化 */
m = 1;
while(m == 1)
{
printf("请输入n(0
www.eeworm.com/read/338034/12327427
c strpoint.c
/* 将字符串a复制到字符串b */
# include
void main()
{
int i;
char a[] = "I am a student.";
char b[20];
char *p1, *p2;
p1 = a; p2 = b;
for(; *p1!='\0'; p1++, p2++)
*p2 = *p1;
*p
www.eeworm.com/read/337844/12336925
cpp 1006.cpp
//1212 2003-06-07 15:34:48 Wrong Answer 1006 C++ 00:00:03 380K just for play
//1263 2003-06-07 15:43:15 Wrong Answer 1006 C++ 00:00:02 380K just for play
#include
#include
i