代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/146187/12665377
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/146126/12668286
h unionfindnode.h
// nodes used in union/find trees
#ifndef unionFindNode_
#define unionFindNode_
using namespace std;
struct unionFindNode
{
int parent; // if true then tree weight
/
www.eeworm.com/read/146126/12668751
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/146126/12668897
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/333538/12676973
cpp circle.cpp
#include
#include
#include
typedef struct
{
HWND *lphWnd;
DWORD dwExStyle; // extended window style
LPCTSTR lpClassName; // pointer to registered clas
www.eeworm.com/read/333254/12692690
cpp addpntrs.cpp
// addpntrs.cpp -- pointer addition
#include
int main()
{
using namespace std;
double wages[3] = {10000.0, 20000.0, 30000.0};
short stacks[3] = {3, 2, 1};
// Here are t
www.eeworm.com/read/333254/12693192
cpp strgback.cpp
// strgback.cpp -- a function returning a pointer to char
#include
char * buildstr(char c, int n); // prototype
int main()
{
using namespace std;
int times;
char ch;
www.eeworm.com/read/246953/12695937
c ex4-18.c
#include
main() {
float T[3][4]=
{
{60.1,70.3,80.5,90.7},{30.0,40.1,50.2,60.3}, {90.0,80.2,70.4,60.6}
};
float * search(float (* pointer)[4],
www.eeworm.com/read/145817/12700653
java insert.java
// =============== Program Description ===============
// 程序名称: insert.java
// 程序目的: 设计一个在链表内插入节点的程序。
// Written By Kuo-Yu Huang. (WANT Studio.)
// ====
www.eeworm.com/read/145817/12700654
java create.java
// =============== Program Description ===============
// 程序名称: create.java
// 程序目的: 设计一个将输入的数据建成链表的程序
// Written By Kuo-Yu Huang. (WANT Studio.)
// ==============================================