代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/219035/7147256
m subsasgn.m
function obj = subsasgn(obj, s, b)
% SUBSASGN subsasgn function for pointers.
% Copyright 2004, 2005 Nikolai Yu. Zolotykh
% Thanks to Gang Liang for a lot of suggestions
obj = do_subsasg
www.eeworm.com/read/456533/7345780
cpp stkoptr1.cpp
// stkoptr1.cpp -- test stack of pointers
#include
#include // for rand(), srand()
#include // for time()
#include "stcktp1.h"
const int Num = 10;
int main
www.eeworm.com/read/456533/7346085
cpp stkoptr1.cpp
// stkoptr1.cpp -- test stack of pointers
#include
#include // for rand(), srand()
#include // for time()
#include "stcktp1.h"
const int Num = 10;
int main
www.eeworm.com/read/456367/7350637
cpp stkoptr1.cpp
// stkoptr1.cpp -- test stack of pointers
#include
#include // for rand(), srand()
#include // for time()
#include "stcktp1.h"
const int Num = 10;
int main
www.eeworm.com/read/456367/7350921
cpp stkoptr1.cpp
// stkoptr1.cpp -- test stack of pointers
#include
#include // for rand(), srand()
#include // for time()
#include "stcktp1.h"
const int Num = 10;
int main
www.eeworm.com/read/452695/7436352
c program7_10.c
/* Program 7.10 Understand pointers to your hat size if you dare */
#include
#include
int main(void)
{
char size[3][12] = { /* Hat sizes as characters
www.eeworm.com/read/444799/7606471
c s_srch1.c
/*
** Given a pointer to a NULL-terminated list of pointers, search
** the strings in the list for a particular character.
*/
#include
#define TRUE 1
#define FALSE 0
int
find_c
www.eeworm.com/read/444091/7618082
c s_srch1.c
/*
** Given a pointer to a NULL-terminated list of pointers, search
** the strings in the list for a particular character.
*/
#include
#define TRUE 1
#define FALSE 0
int
find_c
www.eeworm.com/read/436521/7768655
c s_srch1.c
/*
** Given a pointer to a NULL-terminated list of pointers, search
** the strings in the list for a particular character.
*/
#include
#define TRUE 1
#define FALSE 0
int
find_c
www.eeworm.com/read/289562/7805599
c devfile.c
#include "calld.h"
static FILE *fpdev = NULL;
static int devlineno; /* for error messages */
static char devline[MAXLINE];
/* can't be automatic; dev_next() returns pointers into here */
/*
* R