代码搜索:pointer

找到约 10,000 项符合「pointer」的源代码

代码结果 10,000
www.eeworm.com/read/127960/14325013

cpp pointer1.cpp

//这个程序在本书所带软盘中,文件名为 pointer1.CPP //这个程序演示变量和指针之间的关系。 #include void main(void) { int *ptr; int num = 10; ptr = # cout
www.eeworm.com/read/127960/14325023

cpp pointer3.cpp

//这个程序在本书所带软盘中,文件名为POINTER3.CPP //这个程序演示有关指针变量的输入与输出操作。 #include void main(void) { int *n_ptr; //定义一个整型指针变量n_ptr int num; float *f_ptr; //定义一个实数型指针变量f_ptr float real;
www.eeworm.com/read/224873/14565269

vhd reader_pointer.vhd

-- The Reader Pointer will control the Reader operation LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; USE IEEE.numeric_std.ALL; --use IEEE.std_logic_arith.all; ENTITY reader_pointer IS PORT(
www.eeworm.com/read/224873/14565281

vhd writer_pointer.vhd

-- The Writer Pointer will control the Writer operation LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; USE IEEE.numeric_std.ALL; --use IEEE.std_logic_arith.all; ENTITY writer_pointer IS PORT(
www.eeworm.com/read/224873/14565303

vhd pointer_tb.vhd

LIBRARY IEEE; USE IEEE.std_logic_1164.ALL; --use work.all; ENTITY pointer_tb IS END pointer_tb; ARCHITECTURE behavial of pointer_tb IS COMPONENT writer_pointer port( wclk : IN std_
www.eeworm.com/read/223835/14615960

c pointer1.c

#include int main (){ int *p, *q; int i, j; p = &i; q = &j; printf("Address of i is %p \n", p); printf("Address of j is %p", q); return 0; }
www.eeworm.com/read/122729/14671026

class calpanel$pointer.class

www.eeworm.com/read/220439/14800882

cpp inventory_pointer.cpp

// Inventory Pointer // Demonstrates returning a pointer #include #include #include using namespace std; //returns a pointer to a string element string* ptrTo