代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/234146/14121000
c test.c
main()
{
float a=1.1;
double b=1.1;
printf("%.70f\n%.70f", a,b);
char c = 255;
printf("\n%d", c);
}
www.eeworm.com/read/234146/14121007
c 8.c
int *t(void)
{
int *p;
return p;
}
int t2(void)
{
int a;
return a;
}
main()
{
int *x = t();
printf("%d", *x = 5);
int b = t2();
printf("%d", b = 3);
}
www.eeworm.com/read/131878/14122312
c ide_test.c
//ide_test.c
//include files
#include
#include
#include
#include
#include
#include "ide_test.h"
/*********************** may be c
www.eeworm.com/read/131795/14127128
dat funtc244b.dat
#include
#include
#include
int main(void)
{
int value = 0;
printf("The current status of your keyboard is:
");
value = peek(0x0040, 0x0017);
if (val
www.eeworm.com/read/131795/14127386
dat funtc245b.dat
#include
#include
#include
int main(void)
{
int value = 0;
printf("The current status of your keyboard is:
");
value = peek(0x0040, 0x0017);
if (val
www.eeworm.com/read/131685/14133288
c 四种加密解密算法的源代码:移位密码、仿射密码、维吉尼亚密码以及置换密码。.c
#include
#include
#include
#include
void Shift() /*移位密码*/
{
char c[100];
int length, i=0, key=0;
clrscr();
printf("********Shift Ciphe
www.eeworm.com/read/131660/14134229
txt 7-12.txt
/* 范例:7-12 */
#include
int main()
{
/* 数组与指针 */
char sa[] = "this is a book";
char *ptr = "this is a book";
/* 结果输出至屏幕 */
printf("这是sa数组字符串 -->%s",sa);
printf("\n这是ptr指针
www.eeworm.com/read/131386/14148050
c tr.c
/*本程序顺序分配空间,所以运行后开始几个数字都是'1'*/
#include
#include
#define ROW 12
#define COLUMN 16
#define AREA 192
int a[ROW][COLUMN]={1,1,1,0,0,1,0,1,1,1,0,0,1,0,0,0,
1,0,1,0,0,0,1,0,1,
www.eeworm.com/read/233424/14151403
c testsetjmp.c
/* To test the setjmp ANSI C library */
/* Copyright 1991 Wind River Systems, Inc. */
/*
modification history
--------------------
02a,06aug97,ram modified and documented
01a,02apr92,smb
*/
/*
D
www.eeworm.com/read/233424/14151409
c selectdemo.c
/* selectDemo.c - a program to demonstrate the usage of select routine */
/* Copyright 1984-1997 Wind River Systems, Inc. */
/*
modification history
--------------------
01b,06nov97,mm added copyri