代码搜索:illustrates
找到约 2,346 项符合「illustrates」的源代码
代码结果 2,346
www.eeworm.com/read/123847/14610049
c 3d2.c
/* 3d2.c: Illustrates linear initialization */
#include
int main() {
int a[][3][2] = {1,2,3,4,5,6,7,8,9,0,1,2};
int i, j, k;
for (i = 0; i < 2; ++i) {
for
www.eeworm.com/read/123847/14610058
c 2d.c
/* 2d.c: Illustrates a 2-dim array */
#include
int main() {
int a[][2] = {{1,2}, {3,4}, {5,6}};
int i, j;
for (i = 0; i < 3; ++i) {
for (j = 0; j < 2; ++j)
www.eeworm.com/read/222743/14676683
cpp nonlocal2.cpp
//: C01:Nonlocal2.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file
www.eeworm.com/read/221571/14737198
c 3d2.c
/* 3d2.c: Illustrates linear initialization */
#include
int main()
{
int a[][3][2] = {1,2,3,4,5,6,7,8,9,0,1,2};
int i, j, k;
for (i = 0; i < 2; ++i)
www.eeworm.com/read/221571/14737219
c fun1.c
/* fun1.c: Illustrates a C function */
#include
float avg(int n, int m)
{
return (n + m) / 2.0;
}
int main()
{
int x, y;
puts("Enter the 1st number:");
sc
www.eeworm.com/read/221571/14737255
c 2d.c
/* 2d.c: Illustrates a 2-dim array */
#include
int main()
{
int a[][2] = {{1,2}, {3,4}, {5,6}};
int i, j;
for (i = 0; i < 3; ++i)
{
for (j = 0; j < 2;
www.eeworm.com/read/209853/15212884
cpp nonlocal2.cpp
//: C01:Nonlocal2.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file
www.eeworm.com/read/207238/15278208
txt readme.txt
This demo illustrates how to work with RaveReport.
RaveReport components are supplied with the Delphi 7.
If you have other Delphi / C++ Builder,
you can download RaveReport components from
http
www.eeworm.com/read/207238/15278260
sql simple_select.sql
/*This SQL script uses Demos.abs database.
Please open ...\AbsoluteDatabase\Demos\Data\Demos.abs database file.
This sample illustrates use of simple data retrieval from single table.*/
sele