代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/100285/6271396
h tuptable.h
/*-------------------------------------------------------------------------
*
* tuptable.h
* tuple table support stuff
*
*
* Copyright (c) 1994, Regents of the University of California
*
* $
www.eeworm.com/read/492905/6413764
h tmsg.h
/**************************************************************
* Sparse SVD Via Trace Minimization Procedure for Equivalent *
* 2-Cyclic and A'A Eigensystems. *
*
www.eeworm.com/read/492905/6413787
h tmsg.h
/**************************************************************
* Sparse SVD Via Trace Minimization Procedure for Equivalent *
* 2-Cyclic and A'A Eigensystems. *
*
www.eeworm.com/read/487037/6522682
cc arrptr.cc
#include
using namespace std;
int main()
{
int a[3]={10,20,30};
cout
www.eeworm.com/read/410432/11287469
c quotes.c
/* quotes.c -- strings as pointers */
#include
int main(void)
{
printf("%s, %p, %c\n", "We", "are", *"space farers");
return 0;
}
www.eeworm.com/read/406561/11439733
pas plugininterface.pas
unit PlugInInterface;
interface
//////////////////////////////////////
//
// InitPlugIn : String
// InitPointers (Array of pointers)
implementation
end.
www.eeworm.com/read/157453/11703596
h skipnode.h
#ifndef SkipNode_
#define SkipNode_
template class SkipList;
template
class SkipNode {
friend SkipList;
private:
SkipNode(int size)
www.eeworm.com/read/346994/11706516
c puts.c
/* Demonstrates puts(). */
#include
/* Declare and initialize an array of pointers. */
char *messages[5] = { "This", "is", "a", "short", "message." };
int main( void )
{
in
www.eeworm.com/read/346994/11706603
c multi.c
/* Demonstrates pointers and multidimensional arrays. */
#include
int multi[2][4];
int main( void )
{
printf("\nmulti = %u", multi);
printf("\nmulti[0] = %u", multi[0])
www.eeworm.com/read/346994/11706634
c message.c
/* Initializing an array of pointers to type char. */
#include
int main( void )
{
char *message[8] = { "Four", "score", "and", "seven",
"years", "ago,", "our"