代码搜索:printf

找到约 10,000 项符合「printf」的源代码

代码结果 10,000
www.eeworm.com/read/128965/5977453

c bsp.c

/* * (C) Copyright 2000 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you
www.eeworm.com/read/128965/5977662

c cpu.c

/**************************************************************************** * * SciTech OS Portability Manager Library * * ========================================================
www.eeworm.com/read/128531/5986929

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/128421/5991270

c sb16ctrl.c

///////////////////////////////////////////////////////////////////////// // $Id: sb16ctrl.c,v 1.3 2001/10/03 13:10:38 bdenney Exp $ ///////////////////////////////////////////////////////////////////
www.eeworm.com/read/128209/5992372

cpp sys.cpp

// Sys.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "windows.h" #include "stdio.h" #include "conio.h" #include "PCI2000.h" int main(int argc,
www.eeworm.com/read/128026/5992958

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/128026/5992967

c asterisk.c

# include void main() { int i, j, k; /* 变量i从0到4,表示所画菱形图的第一至第五行 */ for(i = 0; i
www.eeworm.com/read/128026/5992973

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/128026/5992976

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/128026/5993034

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 =