代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/410432/11287558
c names1.c
/* names1.c -- uses pointers to a structure */
#include
#include
struct namect {
char fname[20];
char lname[20];
int letters;
};
void getinfo(struct namect
www.eeworm.com/read/157453/11702711
cpp simul.cpp
// test simulated pointers
#include
#include "simul.h"
void main(void)
{
int x;
SimSpace L(5);
x = L.Allocate();
cout
www.eeworm.com/read/157044/11743498
m treelayoutg.m
function [x,y,h,s] = treelayoutg(parent,post)
% TREELAYOUTG : Lay out a tree or forest.
% [x,y,h,s] = treelayoutg(parent,post)
% parent is the vector of parent pointers, with 0 for a root.
% p
www.eeworm.com/read/256102/12028258
cpp fig08_29.cpp
// Fig. 8.29: fig08_29.cpp
// Demonstrating an array of pointers to functions.
#include
using std::cout;
using std::cin;
using std::endl;
// function prototypes -- each function per
www.eeworm.com/read/340916/12124119
cpp ex4_20.cpp
// Ex4_20.cpp : main project file.
// Creating and using interior pointers
#include "stdafx.h"
using namespace System;
int main(array ^args)
{
// Access array elements
www.eeworm.com/read/340916/12124651
cpp ex10_03.cpp
// Ex10_03.cpp
// Storing pointers to objects in a vector
#include
#include
#include "Person.h"
using std::cin;
using std::cout;
using std::endl;
using std::vector;
www.eeworm.com/read/132141/14106858
cpp simul.cpp
// test simulated pointers
#include
#include "simul.h"
void main(void)
{
int x;
SimSpace L(5);
x = L.Allocate();
cout
www.eeworm.com/read/128030/14318693
cpp ptrorder.cpp
// ptrorder.cpp
// orders two arguments using pointers
#include
using namespace std;
int main()
{
void order(int*, int*); //prototype
int n1=99, n2=11;
www.eeworm.com/read/127615/14346693
html research.html
Cliff Shaffer's Research Projects
Research Projects
Here is information and pointers to websites for some of the research
projects t
www.eeworm.com/read/225725/14521626
htm ei29.htm
Effective C++, 2E | Item 29: Avoid returning "handles" to internal data Back to Implementation
Continue to Item 30: Avoid member functions that return non-const pointers or references to members less