代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/481986/6634621
c main.c
#include "math.h"
void sqt3(n,k,x,f1,f2,eps,xx,b,v,s,dt,ye,yr,r)
int n,k;
double f1,f2,eps,x[],xx[],b[],v[],s[],dt[],ye[],yr[],r[];
{ int i,j,ii,m,imi,imx,l,it;
double z,phi,sd,vmi,vm
www.eeworm.com/read/481225/6645139
cc machine.cc
// machine.cc
// Routines for simulating the execution of user programs.
//
// DO NOT CHANGE -- part of the machine emulation
//
// Copyright (c) 1992-1993 The Regents of the University of Californi
www.eeworm.com/read/481239/6645324
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/481239/6645374
c two_line.c
#include
void main ()
{
printf ("This is line one.\n");
printf ("This is the second line.");
}
www.eeworm.com/read/481239/6645403
c nooutput.c
#include
void main ()
{
// printf ("This line does not appear");
/* This is a comment
printf ("This line does not appear either");
*/
}
www.eeworm.com/read/481239/6645422
c one_line.c
#include
void main ()
{
printf ("This is line one.");
printf ("This is the second line.");
}
www.eeworm.com/read/481239/6645434
c usebreak.c
#include
void main()
{
int counter;
for (counter = 1; counter
www.eeworm.com/read/481239/6645502
c tentatve.c
#include
int value;
void main(void)
{
printf("%d\n", value);
}
int value = 1001;
www.eeworm.com/read/481239/6645657
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,