代码搜索:pointer

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

代码结果 10,000
www.eeworm.com/read/451140/7470722

c readline.c

#include #include #include #include #include "util.h" #include "ReadLine.h" /* Pass in a pointer to a token list. Is freed and then set to null */ void Fre
www.eeworm.com/read/451127/7471005

c os_cpu_c.c

/* ********************************************************************************************************* * uC/OS-II *
www.eeworm.com/read/451123/7471062

c blkmove.c

/*--------------------------------------------------------*/ /* WQ21ST SOFTWARE STUDIO. */ /*--------------------------------------------------------*/ /* Moves block of me
www.eeworm.com/read/450639/7479476

h unpack.h

/************************************************************************** * * ROUTINE * unpack (unpack from binary to decimal) * * FUNCTION * Input binary array and number of binary bits
www.eeworm.com/read/450639/7479499

h packtau.h

/************************************************************************** * * ROUTINE * packtau (pack tau into binaru bit stream) * * FUNCTION * Input decimal value and number of binary
www.eeworm.com/read/450546/7482151

cpp c6-1.cpp

#include using namespace std; int main() {int a,b; int *pointer_1,*pointer_2; a=100;b=10; pointer_1=&a; //把变量a的地址赋给pointer_1 pointer_2=&b; //把变量b的地址赋给pointer_2 cout
www.eeworm.com/read/450546/7482155

cpp c6-3-1.cpp

#include using namespace std; int main() { void swap(int *p1,int *p2); int *pointer_1,*pointer_2,a,b; cin>>a>>b; pointer_1=&a; pointer_2=&b; if(a
www.eeworm.com/read/450546/7482162

cpp c6-3-2.cpp

#include using namespace std; int main() { void swap(int *p1,int *p2); int *pointer_1,*pointer_2,a,b; cin>>a>>b; pointer_1=&a; pointer_2=&b; if(a
www.eeworm.com/read/450470/7483198

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/450470/7483359

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