代码搜索:while

找到约 10,000 项符合「while」的源代码

代码结果 10,000
www.eeworm.com/read/131315/5940303

c rlog.c

/* * RLOG operation */ /***************************************************************************** * print contents of RCS files *****************
www.eeworm.com/read/131315/5940897

ccp mplex.ccp

// This may look like C code, but it is really -*- C++ -*- /* Copyright (C) 1988 Free Software Foundation written by Doug Lea (dl@rocky.oswego.edu) based on code by Marc Shapiro (shapiro@sor.
www.eeworm.com/read/131315/5940957

ccp oxpbag.ccp

// This may look like C code, but it is really -*- C++ -*- /* Copyright (C) 1988 Free Software Foundation written by Doug Lea (dl@rocky.oswego.edu) This file is part of the GNU C++ Library. Thi
www.eeworm.com/read/131315/5941733

c tclines.c

/* Copyright (c) 1986, 1987 by Hewlett-Packard Company Copyright (c) 1986, 1987 by the Massachusetts Institute of Technology Permission to use, copy, modify, and distribute this software and its doc
www.eeworm.com/read/131315/5942505

c ssequal.c

/* ssequal.c - initially equal? */ ssequal (substr, str) register char *substr, *str; { if (!substr) substr = ""; if (!str) str = ""; while (*substr) if (*substr++ !=
www.eeworm.com/read/131315/5942520

c copyip.c

/* copyip.c - copy a string array and return pointer to end */ char **copyip (p, q) register char **p, **q; { while (*p) *q++ = *p++; *q = 0; return q; }
www.eeworm.com/read/131315/5943856

c misc.c

/*- * Copyright (c) 1980, 1991, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, ar
www.eeworm.com/read/131315/5944052

out pretty.out

program bench3 ( input , output ) ; const max = 100 ; var i , len : integer ; inline : packed array [ 1 .. max ] of char ; palind : Boolean ; begin while not eof do begin len := 0 ;
www.eeworm.com/read/131315/5944124

p t16.p

program Main(input, output); procedure copy(var inp, out: text); var c: char; begin while not eof(inp) do begin while not eoln(inp) do begin c := inp^; out^ := c; put(out);
www.eeworm.com/read/131315/5944129

p pcextn.p

program t(output, foo); #include "unixio.h" var foo :text; at :fileptr; begin rewrite(foo); writeln(foo, 'abc'); reset(foo); while not eof(foo) do begin write(foo^); get(foo) end; writeln; APPEN