代码搜索:example1
找到约 444 项符合「example1」的源代码
代码结果 444
www.eeworm.com/read/242043/13098134
cpp exam0-1.cpp
#include
int Example1(int a, int b, int c) //值参数
{
int x, y, z;
x = a; y = b; z = c;
a = 2 * a; b = 2 * b; c = 2 * c; //函数返回后对应实际参数的值不变
return (x + y + z)/3;
}
www.eeworm.com/read/485595/6554290
mak example1.mak
CC = iccavr
CFLAGS = -e -D__ICC_VERSION="7.14C" -DATMEGA -DATMega16 -l -g -Mavr_enhanced
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -g -e:0x4000 -ucrtatmega.o -bfunc_lit:0x54.0x4000 -dram_end:0x45f -b
www.eeworm.com/read/129319/14252309
cpp exam0-1.cpp
#include
int Example1(int a, int b, int c) //值参数
{
int x, y, z;
x = a; y = b; z = c;
a = 2 * a; b = 2 * b; c = 2 * c; //函数返回后对应实际参数的值不变
return (x + y + z)/3;
}
www.eeworm.com/read/221812/14719919
cpp exam0-1.cpp
#include
int Example1(int a, int b, int c) //值参数
{
int x, y, z;
x = a; y = b; z = c;
a = 2 * a; b = 2 * b; c = 2 * c; //函数返回后对应实际参数的值不变
return (x + y + z)/3;
}
www.eeworm.com/read/201037/15418075
cpp exam0-1.cpp
#include
int Example1(int a, int b, int c) //值参数
{
int x, y, z;
x = a; y = b; z = c;
a = 2 * a; b = 2 * b; c = 2 * c; //函数返回后对应实际参数的值不变
return (x + y + z)/3;
}
www.eeworm.com/read/111298/15514925
cpp exam0-1.cpp
#include
int Example1(int a, int b, int c) //值参数
{
int x, y, z;
x = a; y = b; z = c;
a = 2 * a; b = 2 * b; c = 2 * c; //函数返回后对应实际参数的值不变
return (x + y + z)/3;
}
www.eeworm.com/read/261460/11643625
acf example1.acf
// File Example1.acf
[
// This interface will use an implicit binding handle named hExample1Binding.
implicit_handle(handle_t hExample1Binding)
]
interface Example1 // The interface is name
www.eeworm.com/read/168845/5435963
jamfile
exe timing_tests
: timing_tests.cpp
: $(BOOST_ROOT)
;
exe example1
: example1.cpp
: $(BOOST_ROOT)
;
exe example2
: example2.cpp
:
www.eeworm.com/read/210067/7367506
am makefile.am
noinst_PROGRAMS = example1 example2 example3 example4
example1_SOURCES = example1.cpp
example2_SOURCES = example2.cpp
example3_SOURCES = example3.cpp
example4_SOURCES = example4.cpp
INCLUDES = @RTP_
www.eeworm.com/read/258329/6317141
am makefile.am
noinst_PROGRAMS = example1 example2 example3 example4 example5
example1_SOURCES = example1.cpp
example2_SOURCES = example2.cpp
example3_SOURCES = example3.cpp
example4_SOURCES = example4.cpp
example5