代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/259942/11755665
re main.b.re
/* re2c lesson 001_upn_calculator, main.b.re, (c) M. Boerger, L. Allan 2006 */
/*!ignore:re2c
- basic interface for string reading
. We define the macros YYCTYPE, YYCURSOR, YYLIMIT, YYMARKER, YYFI
www.eeworm.com/read/259865/11760954
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/259865/11761100
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/259865/11761139
c two_line.c
#include
void main ()
{
printf ("This is line one.\n");
printf ("This is the second line.");
}
www.eeworm.com/read/259865/11761209
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/259865/11761278
c one_line.c
#include
void main ()
{
printf ("This is line one.");
printf ("This is the second line.");
}
www.eeworm.com/read/259865/11761297
c usebreak.c
#include
void main()
{
int counter;
for (counter = 1; counter
www.eeworm.com/read/259865/11761576
c tentatve.c
#include
int value;
void main(void)
{
printf("%d\n", value);
}
int value = 1001;
www.eeworm.com/read/259865/11761676
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/259865/11761727
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);