代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/452710/7434832
s aulmul.s
|J. Test 1/81
|addressed unsigned long multiply: *a = *a * b
.globl aulmul
.text
aulmul: link a6,#0
moveml #0x3000,sp@- |save d2,d3
movl a6@(8),a0 |a0 = pointer to a
movl a0@,d2 |d2 =
www.eeworm.com/read/452695/7436399
c program7_09.c
/* Program 7.9 Multidimensional arrays and pointers*/
#include
int main(void)
{
char board[3][3] = {
{'1','2','3'},
{'4','5','6'},
www.eeworm.com/read/452695/7436410
c program9_01.c
/* Program 9.1 Pointing to functions */
#include
/* Function prototypes */
int sum(int, int);
int product(int, int);
int difference(int, int);
int main(void)
{
int a = 10;
www.eeworm.com/read/452050/7451066
java 3341003_ac_188ms_2100k.java
import java.util.*;
public class Main
{
/**
* @param args
*/
public static void main(String[] args)
{
new Main().run();
}
class Expression
{
int c0, c1;
}
Stri
www.eeworm.com/read/451971/7452815
h bitree.h
//Created by Yangfeng Hong & Feifei Fang
#pragma once
//定义二叉链表的节点类型
typedef struct node {
char data;
pointer lch,rch;
}*pointer,*bitree;
class CBiTree:CBasicAlgorithm
{
public:
CB
www.eeworm.com/read/451737/7456810
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/451398/7465727
inc tisstimp.inc
//************************************************************************************//
// File created automatically by GenerateRecords.xls //
// Modified by hand
www.eeworm.com/read/451329/7467003
c useaddr.c
#include
void main(void)
{
int a = 1, b = 2;
int *i_pointer;
// Assign an address
i_pointer = &a;
// Change the value pointed to by i_pointer to 5
*i_point
www.eeworm.com/read/451329/7467153
c brk.c
#include
#include
void main(void)
{
char *ptr;
printf("Starting heap available %u\n", coreleft());
ptr = malloc(1); // Get pointer to current break v
www.eeworm.com/read/451174/7469673
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*