代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/11180/210706
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/11180/210819
c ptr_out.c
#include
void main ()
{
int value;
printf("The address of the variable value is %p\n",
&value);
}
www.eeworm.com/read/11180/210910
c env_ptr.c
#include
void main (int argc, char **argv, char **env)
{
while (*env)
printf("%s\n", *env++);
}
www.eeworm.com/read/11180/210912
c argv_ptr.c
#include
void main (int argc, char **argv)
{
while (*argv)
printf ("%s\n", *argv++);
}
www.eeworm.com/read/12865/249775
cpp auto_ptr.cpp
/**************************************************************************
*
* auto_ptr.cpp - Example program of auto_ptr. See Class Reference Section
*
****************************************
www.eeworm.com/read/12865/250244
htm ptr_4059.htm
www.eeworm.com/read/12870/252014
htm ptr_4059.htm
www.eeworm.com/read/14232/323980
pdf ptr8000.pdf
www.eeworm.com/read/14232/323981
ddb ptr8000.ddb
www.eeworm.com/read/14232/323985
lst ptr8000.lst
__text_start:
__start:
002A E5CF LDI R28,0x5F
002B E0D4 LDI R29,4
002C BFCD OUT 0x3D,R28
002D BFDE OUT 0x3E,R29
002E 51C0 SUBI R28,0x10
002F 40D