代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/259297/11809154
c 2440lib.c
//===================================================================
// File Name : 2440lib.c
// Function : S3C2440 PLL,Uart, LED, Port Init
// Date : March 20, 2002
// Version : 0.0
//
www.eeworm.com/read/259296/11809240
c 2440lib.c
//===================================================================
// File Name : 2440lib.c
// Function : S3C2440 PLL,Uart, LED, Port Init
// Date : March 20, 2002
// Version : 0.0
//
www.eeworm.com/read/259284/11809842
cpp gui16.cpp
#include
#include "gui16.h"
LPDIRECTDRAW lpDD; // DirectDraw object
inline WORD RGBto16bit(DDPIXELFORMAT* pixFormat,unsigned char r,unsigned char g,unsigned cha
www.eeworm.com/read/156238/11816854
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/259151/11817931
c 例9-1.c
/* Note:Your choice is C IDE */
#include
#include
#include
#include
#define N 100
struct student
{
char num[10];
char name[10];
char tel[11]
www.eeworm.com/read/156177/11823312
txt 総典c程嶏100事81--90.txt
【程序81】
题目:809*??=800*??+9*??+1 其中??代表的两位数,8*??的结果为两位数,9*??的结果为3位数。求??代表的两位数,及809*??后的结果。
1.程序分析:
2.程序源代码:
output(long b,long i)
{ printf("\n%ld/%ld=809*%ld+%ld",b,i,i,b%i);
}
main()
{long int
www.eeworm.com/read/345247/11824028
c ex5.c
#include
main() {
int a, b;
unsigned int x, y;
a = b = 0xaa55; x = y = 0xaa55;
printf("\n a=%4x b=%4x x=%4x y=%4x",a,b,x,y);
a = a
www.eeworm.com/read/345247/11824030
c ex9.c
#include
main() {
int i;
int *int_ptr;
int_ptr = &i;
*int_ptr = 5;
printf("\n i = %d",i);
while(1);
}