代码搜索结果
找到约 10,000 项符合
Test 的代码
test.c
#include "STC12C5410AD.H"
#include "wbtest.h"
#include "com.h"
#include "STC_EEPROM.H"
//---------------------------------------------------------------------
//--------------------------------
test.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
test.cpp
#include
#include
#include
#include
#include
#include "RTree.h"
using namespace std;
#define DIMENSION 3
// Use CRT Debug facili
test.plg
Build Log
--------------------Configuration: test - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1
test.dsp
# Microsoft Developer Studio Project File - Name="test" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
!_test.c
void main()
{
int a, b;
a = b = 1;
if( !(a == b) ) printf( "not equal\n" );
else printf( "equal\n" );
}
for_test.c
void main()
{
int i, j;
j = 10;
for( i = 0; i < 10; i = i + 1 ) { j = j + 1; }
write( j );
}