代码搜索:ptr
找到约 10,000 项符合「ptr」的源代码
代码结果 10,000
www.eeworm.com/read/286953/8735787
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/286953/8736112
c ptr_out.c
#include
void main ()
{
int value;
printf("The address of the variable value is %p\n",
&value);
}
www.eeworm.com/read/286953/8736373
c env_ptr.c
#include
void main (int argc, char **argv, char **env)
{
while (*env)
printf("%s\n", *env++);
}
www.eeworm.com/read/286953/8736378
c argv_ptr.c
#include
void main (int argc, char **argv)
{
while (*argv)
printf ("%s\n", *argv++);
}
www.eeworm.com/read/286533/8760584
tdf mult_ptr.tdf
--lpm_mult CBX_DECLARE_ALL_CONNECTED_PORTS="OFF" DEDICATED_MULTIPLIER_CIRCUITRY="YES" DEVICE_FAMILY="Cyclone II" DSP_BLOCK_BALANCING="Auto" LPM_REPRESENTATION="SIGNED" LPM_WIDTHA=14 LPM_WIDTHB=14 LPM_
www.eeworm.com/read/385377/8807604
v write_ptr.v
//写指针逻辑模块
module write_ptr
#(
parameter
ADDR_WIDTH = 4
)
(
output reg [ADDR_WIDTH-1 : 0] w_ptr,
input wire rst_n,
input wire w_clk,
input wire w_req,
//读空标志
input wire asyn_full
www.eeworm.com/read/385377/8807612
v read_ptr.v
//读指针逻辑模块
module read_ptr
#(
parameter
ADDR_WIDTH = 4
)
(
output reg [ADDR_WIDTH-1 : 0] r_ptr,
input wire rst_n,
input wire r_clk,
input wire r_req,
//读空标志
input wire asyn_empty
www.eeworm.com/read/187002/8884628
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/187002/8884657
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/187002/8884727
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");
}