代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/153411/12035131
c os_cpu_c.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/153391/12036280
c lt513.c
# include "stdio.h"
void main( )
{ char *a="I am a student";
printf("%s\n",a);
}
www.eeworm.com/read/153391/12036285
c sx5103.c
# include "stdio.h"
void main ( )
{ int *p,i,a[10];
p=a;
for (i=0;i
www.eeworm.com/read/153391/12036392
c lt715.c
# include "stdio.h"
# include "rd.c"
# include "ma.c"
void main()
{ int i,j,x,y;
i=3;j=6;
rd(i,j);
x=i+j;
printf ("x= %d\n",x);
ma(i,x);
y=x*i;
printf ("y=%d\n",y);
}
www.eeworm.com/read/153391/12036497
c sx4102.c
# include "stdio.h"
void main( )
{
char s;
printf ("this is C program. \n");
a ( );
b ( );
printf ("this is VFP program. \n"); }
a ( )
{ printf ("this is VC program. \n");
b ( );
www.eeworm.com/read/153391/12036504
c lt411.c
# include "stdio.h"
void main( )
{
char s;
int a,b,c,t;
scanf("%d%d%d",&a,&b,&c);
if (a>b)
{ t=a;a=b;b=t;}
if (a>c)
{ t=a;a=c;c=t;}
if (b>c)
{ t=b;b=c;c=t;}
printf("a=%d,b=%d,c
www.eeworm.com/read/153391/12036512
c sx4101.c
# include "stdio.h"
void main( )
{ int i;
int count(int n);
for (i=1;i
www.eeworm.com/read/256014/12036519
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/153391/12036564
c lt36.c
# include "stdio.h"
void main( )
{
float a,b,c,t;
scanf("%f,%f,%f",&a,&b,&c);
if (a>b)
{ t=a;a=b;b=t; }
if (a>c)
{ t=a;a=c;c=t; }
if (b>c)
{ t=b;b=c;c=t; }
printf("%5.2f\t %5.2f
www.eeworm.com/read/153391/12036681
c lt16.c
# include "stdio.h"
void main( )
{
int a;
float b,c;
scanf("%2d%3f%4f",&a,&b,&c);
printf("a=%d,b=%f,c=%f",a,b,c);
}