代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/136812/5860887
c hash.c
#ifndef lint
static char sccsid[] = "@(#)hash.c 1.1 92/07/30 SMI"; /* from UCB 1.1 03/29/83 */
#endif
#include "cpass1.h"
/*
* Hash function. Used for pass 2 symbol table and string table,
* and
www.eeworm.com/read/136786/5864001
c hexify.c
#include
void main()
{
int c;
int comma=0;
int count=0;
while((c=getchar())!=EOF)
{
unsigned char x=c;
if(comma)
printf(",");
else
comma=1;
if(count==8)
{
count=0;
www.eeworm.com/read/136786/5866588
h system.h
/*
* linux/include/asm-arm/proc-armo/system.h
*
* Copyright (C) 1995, 1996 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU
www.eeworm.com/read/136786/5866821
h uncompress.h
/*
* linux/include/asm-arm/arch-mx1ads/uncompress.h
*
*
*
* Copyright (C) 1999 ARM Limited
* Copyright (C) Shane Nay (shane@minirl.com)
*
* This program is free software; you can redistribu
www.eeworm.com/read/135984/5875767
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/135984/5875792
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/135620/5883529
cpp p297.cpp
#include "P267E.cpp"
template
void Graph::CriticalPath ( ) {
//在此算法中需要对邻接表中单链表的结点加以修改, 在各结点中增加一个int域cost, 记录该结点所表示的边
//上的权值。
int i;
www.eeworm.com/read/135620/5883645
cpp p297.cpp
#include "P267E.cpp"
template
void Graph::CriticalPath ( ) {
//在此算法中需要对邻接表中单链表的结点加以修改, 在各结点中增加一个int域cost, 记录该结点所表示的边
//上的权值。
int i;
www.eeworm.com/read/135153/5889297
h system.h
/*
* linux/include/asm-arm/proc-armo/system.h
*
* Copyright (C) 1995, 1996 Russell King
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU
www.eeworm.com/read/134909/5891428
c delay.c
/*
* Delay functions
* See delay.h for details
*
* Make sure this code is compiled with full optimization!!!
*/
#include "delay.h"
void
DelayMs(unsigned char cnt)
{
unsigned char i