代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/346994/11706135
c ex01-03.c
#include
int x, y;
int main( void )
{
for ( x = 0; x < 10; x++, printf( "\n" ) )
for ( y = 0; y < 10; y++ )
printf( "X" );
return 0;
}
www.eeworm.com/read/346994/11706140
c ex01-06.c
#include
int x, y;
int main( void )
{
for ( x = 0; x < 10; x++, printf( "\n" ) )
for ( y = 0; y < 10; y++ )
printf( "%c", 1 );
return 0;
}
www.eeworm.com/read/346994/11706403
c multiply.c
/* Program to calculate the product of two numbers. */
#include
int val1, val2, val3;
int product(int x, int y);
int main( void )
{
/* Get the first number */
printf("Ente
www.eeworm.com/read/346994/11706534
c scanf.c
/* Demonstrates some uses of scanf(). */
#include
int main( void )
{
int i1;
int i2;
long l1;
double d1;
char buf1[80];
char buf2[80];
/* Us
www.eeworm.com/read/346994/11706767
c unary.c
/* Demonstrates unary operator prefix and postfix modes */
#include
int a, b;
int main(void)
{
/* Set a and b both equal to 5 */
a = b = 5;
/* Print them, decrem
www.eeworm.com/read/346994/11706792
c list0502.c
/* Illustrates the difference between arguments and parameters. */
#include
float x = 3.5, y = 65.11, z;
float half_of(float k);
int main( void )
{
/* In this call, x is th
www.eeworm.com/read/157396/11712069
c hfb.c
/* ----------------------------------------------------------- */
/* */
/* ___ */
/*
www.eeworm.com/read/157396/11712160
c lplex.c
/* ----------------------------------------------------------- */
/* */
/* ___ */
/*
www.eeworm.com/read/157396/11712887
c hresults.c
/* ----------------------------------------------------------- */
/* */
/* ___ */
/*
www.eeworm.com/read/157396/11712929
c hhed.c
/* ----------------------------------------------------------- */
/* */
/* ___ */
/*