代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/301198/13863871
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/301198/13863984
c ptr_out.c
#include
void main ()
{
int value;
printf("The address of the variable value is %p\n",
&value);
}
www.eeworm.com/read/301198/13864076
c env_ptr.c
#include
void main (int argc, char **argv, char **env)
{
while (*env)
printf("%s\n", *env++);
}
www.eeworm.com/read/301198/13864078
c argv_ptr.c
#include
void main (int argc, char **argv)
{
while (*argv)
printf ("%s\n", *argv++);
}
www.eeworm.com/read/301062/13866850
c ptr8000.c
#include
#include
#include
#include
#define uint unsigned int
#define uchar unsigned char
////////////SPI指令
#define WC 0x00
#define RC 0x10
www.eeworm.com/read/301062/13866853
lnp ptr8000.lnp
"STARTUP.obj",
"PTR8000.obj"
TO "ptr8000"
RAMSIZE(256)
www.eeworm.com/read/301062/13866856
plg ptr8000.plg
礦ision3 Build Log
Project:
F:\无线表决系统\程序\ptr8000\ptr8000.uv2
Project File Date: 04/15/2008
Output:
Build target 'Target 1'
assembling STARTUP.
www.eeworm.com/read/301062/13866859
obj ptr8000.obj
www.eeworm.com/read/301062/13866860
opt ptr8000.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.s*; *.src; *.a*)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt; *.h; *.inc)
pExt (*.plm)
CppX (*.cpp)
DaveTm {