代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/148696/12440440
c ptr_out.c
#include
void main(void)
{
int value;
printf("The address of the variable value is %p\n", &value);
}
www.eeworm.com/read/148696/12441487
cpp ptr_obj.cpp
#include
class Base
{
public:
void base_message(void) { cout
www.eeworm.com/read/148696/12442789
c argv_ptr.c
#include
void main(int argc, char **argv)
{
while (*argv)
printf ("%s\n", *argv++);
}
www.eeworm.com/read/148696/12442849
c env_ptr.c
#include
void main(int argc, char **argv, char **env)
{
while (*env)
printf("%s\n", *env++);
}
www.eeworm.com/read/249911/12447527
h shared_ptr.h
/* Copyright (C) 2004 Chris Vine
This program is distributed under the General Public Licence, version 2.
For particulars of this and relevant disclaimers see the file
COPYING distributed with the so
www.eeworm.com/read/234444/14112554
pdf ptr2000.pdf
www.eeworm.com/read/131540/14139946
bmp varbmp_ptr.bmp
www.eeworm.com/read/131077/14162195
obj2ptr
#!/usr/local/bin/perl
#
# obj2ptr
# Copyright (C) 1997 Norio Katayama
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
#
www.eeworm.com/read/130553/14186954
txt ptr_help.txt
Date: Tue Jun 16 1992 11:05:08
From: Ted Jensen
To: Michael Halcrow
Subj: Pointers & things
Attr:
international C echo
-------------------------------
Michael-
In reading y
www.eeworm.com/read/129922/14216855
c ptr_demo.c
#include
void main(void)
{
int counter = 10;
int *iptr; // Declare pointer value
iptr = &counter; // Assign the address
printf("Addres in iptr %x Value at