代码搜索:array

找到约 10,000 项符合「array」的源代码

代码结果 10,000
www.eeworm.com/read/387489/8672902

pas unit2.pas

unit Unit2; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls,unit1, Forms, Dialogs; Function GASDEV:real; Procedure SVDVAR(V:matrx2; MA, NP:integer; W:array of real;
www.eeworm.com/read/387489/8673014

txt polcof.txt

procedure POLCOF(XA, YA:array of real; N:integer; var COF:array of real); var X, Y:array[0..15] of real; I,J,K:integer; XMIN,DY:real; begin For J:=1 To N do begin X
www.eeworm.com/read/387489/8674112

pas unit2.pas

unit Unit2; interface uses unit1; Procedure TRED2(var A:matrx2; N:integer; var D:array of real;var E:array of real); implementation Procedure TRED2(var A:matrx2; N:
www.eeworm.com/read/387489/8674137

pas unit2.pas

unit Unit2; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls,unit1, Forms, Dialogs; Procedure TRED2(var A:matrx2; N:integer; var D:array of real;
www.eeworm.com/read/286953/8735741

c arrayadd.c

#include void main(void) { int count[10]; float salaries[5]; long distances[10]; printf("Address of the array count is %x\n", count); printf("Address of the array
www.eeworm.com/read/286953/8735798

c arraytwo.c

#include void main(void) { int count[10]; float salaries[5]; long distances[10]; printf("Address of the array count is %x &count is %x\n", count, &count); p
www.eeworm.com/read/386496/8739863

pas define_types.pas

unit define_types; interface {$IFDEF LINUX} uses SysUtils,QDialogs,QControls; {$ELSE} uses Windows,SysUtils,Dialogs,Controls,classes {tstrings}; {$ENDIF} const PixelCountMax = 3
www.eeworm.com/read/385844/8786558

c sort.c

/* sort.c * Test program to sort a large number of integers. * * Intention is to stress virtual memory system. * * Ideally, we could read the unsorted array off of the file system, * a
www.eeworm.com/read/285874/8806080

htm mi5.htm

More Effective C++ | Item 5: Be wary of user-defined conversion functions Back to Operators Continue to Item 6: Distinguish between prefix and postfix forms of increment and decrement operators Item
www.eeworm.com/read/285874/8806151

htm mi3.htm

More Effective C++ | Item 3: Never treat arrays polymorphically Back to Item 2: Prefer C++-style casts Continue to Item 4: Avoid gratuitous default constructors Item 3: Never treat arrays polymorphic