代码搜索:Testing
找到约 10,000 项符合「Testing」的源代码
代码结果 10,000
www.eeworm.com/read/233414/14154635
mod2convert-test-out
Creating sparse matrix.
Converting from sparse to dense.
Converting back to dense again.
Testing for equality of two sparse matrices: OK.
Converting to dense once again.
Testing for equality of two d
www.eeworm.com/read/129922/14217118
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/129922/14217124
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/128628/14288437
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/128628/14288457
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
www.eeworm.com/read/125782/14463817
problems
This is a list of open problems. This mainly lists known missing pieces
and design flaws.
1. Testing!!!
2. Better demo program
www.eeworm.com/read/121154/14768374
cm test04.cm
/* Complicated statement testing
if while for return
complicated test conditions
*/
int main(){
int c;
int d;
c = 2;
d = 3;
if (c == 0){
c = 4;
}
while (c !=
www.eeworm.com/read/221024/14777651
html http:^^www.cs.utexas.edu^users^suzy^cs304p^testroom.html
MIME-Version: 1.0
Server: CERN/3.0
Date: Wednesday, 08-Jan-97 16:36:01 GMT
Content-Type: text/html
Content-Length: 1336
Last-Modified: Tuesday, 19-Mar-96 17:09:23 GMT
CS304
www.eeworm.com/read/119982/14815797
c strieql.c
#include
#include
int strieql(char *str1, char *str2)
{
while ((toupper(*str1) == toupper(*str2)) && (*str1))
{
str1++;
str2++;
}
return
www.eeworm.com/read/119982/14815803
c streql.c
#include
int streql(char *str1, char *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));