代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/139738/13137239
c strcmp.c
#include "stdlib.h"
/* lexicographically compares a and b */
int strcmp(const char* a, const char* b) {
do {
if (*a < *b)
return -1;
if (*a > *b)
return 1;
}
while (*(a++) !
www.eeworm.com/read/326485/13139727
c msp430xg46x_uscib0_spi_01.c
//******************************************************************************
// MSP430xG46x Demo - USCI_B0, SPI Interface to TLC549 8-Bit ADC
//
// Description: This program demonstrate USC
www.eeworm.com/read/241446/13143995
m simu2.m
clear
cs=100;
for j=1:cs
j
w(j)=0;
i=2;
x(i)=exprnd(10);
c(i)=x(i);
b(i)=x(i);
while b(i)
www.eeworm.com/read/139556/13149162
vb sortalogrithm.vb
Public Class SortAlogrithm
Protected Overridable Sub Exch(ByRef A As Integer, ByRef B As Integer, ByVal i As Integer, ByVal j As Integer)
Dim T As Integer
T = A
A =
www.eeworm.com/read/139556/13149206
vb sortalogrithm.vb
Public Class SortAlogrithm
Protected Overridable Sub Exch(ByRef A As Integer, ByRef B As Integer)
Dim T As Integer
T = A
A = B
B = T
End Sub
Pr
www.eeworm.com/read/241345/13153854
c bo4-3.c
/* bo4-3.c 串采用块链存储结构(由c4-3.h定义)的基本操作(16个) */
void InitString(LString *T)
{ /* 初始化(产生空串)字符串T。另加 */
(*T).curlen=0;
(*T).head=NULL;
(*T).tail=NULL;
}
Status StrAssign(LString *T,ch
www.eeworm.com/read/326187/13156616
lst main.lst
C51 COMPILER V6.23a MAIN 11/13/2002 23:29:37 PAGE 1
C51 COMPILER V6.23a, COMPILATION OF MODULE MAIN
OBJECT MODULE PLACED IN m
www.eeworm.com/read/326187/13156634
c main.c
#include /* special function register declarations */
/* for the intended 8051 derivative */
#include