代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/476355/6757956
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/476355/6757969
c two_line.c
#include
void main ()
{
printf ("This is line one.\n");
printf ("This is the second line.");
}
www.eeworm.com/read/476355/6758000
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/476355/6758022
c one_line.c
#include
void main ()
{
printf ("This is line one.");
printf ("This is the second line.");
}
www.eeworm.com/read/476355/6758040
c usebreak.c
#include
void main()
{
int counter;
for (counter = 1; counter
www.eeworm.com/read/476355/6758139
c tentatve.c
#include
int value;
void main(void)
{
printf("%d\n", value);
}
int value = 1001;
www.eeworm.com/read/476355/6758188
c pow10.c
#include
#include
void main (void)
{
printf("10 raised to -1 is %f\n", pow10(-1));
printf("10 raised to 0 is %f\n", pow10(0));
printf("10 raised to 1 is %f\n", pow
www.eeworm.com/read/476355/6758209
c map_rand.c
#include
#include
void main(void)
{
int i;
printf("Values in the range 0.0 through 1.0\n");
for (i = 0; i < 5; i++)
printf("%f\n", rand() / 32767.0);
www.eeworm.com/read/476405/6760737
cpp 111.cpp
#include
#include
void load1(float a[])
{
FILE *fp;
int i;
if((fp=fopen("1.txt","rb"))==NULL)
{
printf("cannot open");
return;
}
for(i=1;i
www.eeworm.com/read/410811/11268632
c rtp.c
/*!
************************************************************************
* \file rtp.c
*
* \brief
* Network Adaptation layer for RTP packets
*
* \author
* Main contributor