代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/140545/13076288
cpp auto_ptr.cpp
//: C01:Auto_ptr.cpp
// Illustrates the RAII nature of auto_ptr
#include
#include
using namespace std;
class TraceHeap {
int i;
public:
static void* operator new(size
www.eeworm.com/read/242149/13091974
bmp varbmp_ptr.bmp
www.eeworm.com/read/326893/13110362
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
www.eeworm.com/read/326893/13110372
c ptr_upr.c
#include
#include
char *string_uppercase(char *string)
{
char *starting_address;
starting_address = string;
while (*string)
toupper(*string++);
re
www.eeworm.com/read/326893/13110419
c str_ptr.c
#include
void show_string(char *string)
{
while (*string)
putchar(*string++);
}
void main(void)
{
show_string("Jamsa's 1001 C/C++ Tips");
}
www.eeworm.com/read/326893/13110735
c ptr_out.c
#include
void main ()
{
int value;
printf("The address of the variable value is %p\n",
&value);
}
www.eeworm.com/read/326893/13110984
c env_ptr.c
#include
void main (int argc, char **argv, char **env)
{
while (*env)
printf("%s\n", *env++);
}
www.eeworm.com/read/326893/13110989
c argv_ptr.c
#include
void main (int argc, char **argv)
{
while (*argv)
printf ("%s\n", *argv++);
}
www.eeworm.com/read/139222/13173215
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/138702/13223810