代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/308442/13701079
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/308442/13701192
c ptr_out.c
#include
void main ()
{
int value;
printf("The address of the variable value is %p\n",
&value);
}
www.eeworm.com/read/308442/13701283
c env_ptr.c
#include
void main (int argc, char **argv, char **env)
{
while (*env)
printf("%s\n", *env++);
}
www.eeworm.com/read/308442/13701285
c argv_ptr.c
#include
void main (int argc, char **argv)
{
while (*argv)
printf ("%s\n", *argv++);
}
www.eeworm.com/read/307774/13715164
bmp varbmp_ptr.bmp
www.eeworm.com/read/305663/13763725
bmp varbmp_ptr.bmp
www.eeworm.com/read/304851/13785017
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/301268/13862262
h auto_ptr.h
#ifndef Heap_ptr_h
#define Heap_ptr_h
#include
template class auto_ptr
{
public:
auto_ptr(T* p=0) { p_=p; }
~auto_ptr() { delete p_; }
a
www.eeworm.com/read/301198/13863844
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/301198/13863851
c ptr_upr.c
#include
#include
char *string_uppercase(char *string)
{
char *starting_address;
starting_address = string;
while (*string)
toupper(*string++);
re