代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/259580/11780904
h equivnode.h
#ifndef equivNode_
#define equivNode_
struct equivNode
{
int equivClass, // element class identifier
size, // number of elements in class
next; // pointer to
www.eeworm.com/read/259580/11781281
cpp arrayiterator.cpp
// using an array iterator
#include
using namespace std;
int main()
{
int x[3] = {0, 1, 2};
// use a pointer y to iterate through the array x
for (int* y = x; y != x +
www.eeworm.com/read/345601/11803127
pas memorymanager.pas
unit MemoryManager;
interface
procedure SnapCurrMemStatToFile(Filename: string);
implementation
uses
Windows, SysUtils, TypInfo;
const
MaxCount = 5000000;//High(DWord);
var
www.eeworm.com/read/345601/11803474
pas checkmem.pas
unit CheckMem; file://Add it to the first line of project uses
interface
procedure SnapCurrMemStatToFile(Filename: string);
implementation
uses
Windows, SysUtils, TypInfo;
const
M
www.eeworm.com/read/259220/11814364
cpp pointertomemberoperator.cpp
//: C12:PointerToMemberOperator.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include
www.eeworm.com/read/259220/11814585
cpp pointertofunction.cpp
//: C03:PointerToFunction.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Defining and using a p
www.eeworm.com/read/259220/11814617
cpp nestfriend.cpp
//: C05:NestFriend.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Nested friends
#include
www.eeworm.com/read/259220/11814806
cpp memtest.cpp
//: C07:MemTest.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Testing the Mem class
//{L} Mem
www.eeworm.com/read/156208/11820061
pas zlib.pas
{*******************************************************}
{ }
{ Borland Delphi Supplemental Components }
{ ZLIB Data Compr
www.eeworm.com/read/156177/11823310
txt 総典c程嶏100事71--80.txt
经典c程序100例==71--80
【程序71】
题目:编写input()和output()函数输入,输出5个学生的数据记录。
1.程序分析:
2.程序源代码:
#define N 5
struct student
{ char num[6];
char name[8];
int score[4];
} stu[N];
input(stu)
struct stude