代码搜索:ptr

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

代码结果 10,000
www.eeworm.com/read/463857/7174575

c hil_ptr.c

/* * Generic linux-input device driver for axis-bearing devices * * Copyright (c) 2001 Brian S. Julin * All rights reserved. * * Redistribution and use in source and binary forms, with or withou
www.eeworm.com/read/463543/7178709

c ptr_cmp.c

/* get_ptr_compare(len) returns a pointer to a optimal byte-compare function for a array of stringpointer where all strings have size len. The bytes are compare as unsigned chars. Because the
www.eeworm.com/read/462279/7205113

bmp varbmp_ptr.bmp

www.eeworm.com/read/457902/7315701

c ptr_ops.c

// ptr_ops.c -- pointer operations #include int main(void) { int urn[5] = {100,200,300,400,500}; int * ptr1, * ptr2, *ptr3; ptr1 = urn; // assign an address to a
www.eeworm.com/read/457902/7315732

c func_ptr.c

// func_ptr.c -- uses function pointers #include #include #include char showmenu(void); void eatline(void); // read through end of line void show(void (*
www.eeworm.com/read/456533/7345654

cpp init_ptr.cpp

// init_ptr.cpp -- initialize a pointer #include int main() { using namespace std; int higgens = 5; int * pt = &higgens; cout
www.eeworm.com/read/456533/7345854

cpp fun_ptr.cpp

// fun_ptr.cpp -- pointers to functions #include double betsy(int); double pam(int); // second argument is pointer to a type double function that // takes a type int argument void e
www.eeworm.com/read/456533/7345957

cpp init_ptr.cpp

// init_ptr.cpp -- initialize a pointer #include int main() { using namespace std; int higgens = 5; int * pt = &higgens; cout
www.eeworm.com/read/456533/7346157

cpp fun_ptr.cpp

// fun_ptr.cpp -- pointers to functions #include double betsy(int); double pam(int); // second argument is pointer to a type double function that // takes a type int argument void e
www.eeworm.com/read/456367/7350512

cpp init_ptr.cpp

// init_ptr.cpp -- initialize a pointer #include int main() { using namespace std; int higgens = 5; int * pt = &higgens; cout