代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/340176/12177495
c 4maqr.c
#include "math.h"
#include "stdio.h"
int maqr(a,m,n,q)
int m,n;
double a[],q[];
{ int i,j,k,l,nn,p,jj;
double u,alpha,w,t;
if (m
www.eeworm.com/read/253871/12179439
cpp ll.cpp
#include
#include
#include
int count=0; /*分解的产生式的个数*/
int number; /*终结符非终结符总数*/
char start; /*开始符号*/
char termin[50];
www.eeworm.com/read/253821/12184194
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/253821/12184216
c asterisk.c
# include
void main()
{
int i, j, k;
/* 变量i从0到4,表示所画菱形图的第一至第五行 */
for(i = 0; i
www.eeworm.com/read/253821/12184232
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/253821/12184242
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/253821/12184415
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/253821/12184439
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/253420/12222985
c rtp.c
/*!
************************************************************************
* \file rtp.c
*
* \brief
* Network Adaptation layer for RTP packets
*
* \author
* Main contributor
www.eeworm.com/read/253411/12224751
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 (