代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/333254/12692697
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/333254/12693194
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/246064/12757987
xpm left_ptr.xpm
/* XPM */
static char* Normal[] = {
"32 32 3 1 8 3",
" c None",
"! c #101010",
"# c #000000",
" ",
" ",
"
www.eeworm.com/read/332313/12764180
h thin_ptr.h
/*
Copyright (c) 2001
Author: Konstantin Boukreev
E-mail: konstantin@mail.primorye.ru
Created: 05.09.2001 12:19:42
Version: 1.0.0
*/
#ifndef _thin_ptr_08dde7a2_d5d1_4fbb_a29e_9365
www.eeworm.com/read/245818/12779169
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/245818/12779247
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/144374/12799626
bmp varbmp_ptr.bmp
www.eeworm.com/read/143035/12903548
h ptr_tag.h
www.eeworm.com/read/142793/12918081
cpp auto_ptr.cpp
//: C01:Auto_ptr.cpp
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated in the file
www.eeworm.com/read/242543/12999401