代码搜索:pointers
找到约 4,056 项符合「pointers」的源代码
代码结果 4,056
www.eeworm.com/read/421785/10698632
c p_and_s.c
/* p_and_s.c -- pointers and strings */
#include
int main(void)
{
const char * mesg = "Don't be a fool!";
const char * copy;
copy = mesg;
printf("%s\n", copy);
www.eeworm.com/read/349627/10812521
c gui__intersectrect.c
/*
*********************************************************************************************************
* uC/GUI
* Univers
www.eeworm.com/read/273514/10913536
c gui__intersectrect.c
/*********************************************************************
* SEGGER MICROCONTROLLER SYSTEME GmbH *
* Solutions for real time microcontroller applica
www.eeworm.com/read/466799/7020854
c nrutil.c
#if defined(__STDC__) || defined(ANSI) || defined(NRANSI) /* ANSI */
#include
#include
#include
#define NR_END 1
#define FREE_ARG char*
void nrerror(char erro
www.eeworm.com/read/466802/7020925
c nrutil.c
#if defined(__STDC__) || defined(ANSI) || defined(NRANSI) /* ANSI */
#include
#include
#include
#define NR_END 1
#define FREE_ARG char*
void nrerror(char erro
www.eeworm.com/read/129161/7077896
c example.c
/* example.c - an example of using libpng */
/* this is an example of how to use libpng to read and write
png files. The file libpng.txt is much more verbose then
this. If you have not re
www.eeworm.com/read/457902/7315690
c p_and_s.c
/* p_and_s.c -- pointers and strings */
#include
int main(void)
{
const char * mesg = "Don't be a fool!";
const char * copy;
copy = mesg;
printf("%s\n", copy);
www.eeworm.com/read/452695/7436371
c program7_07.c
/* Program 7.7 Two-Dimensional arrays and pointers */
#include
int main(void)
{
char board[3][3] = {
{'1','2','3'},
{'4','5','6'},
www.eeworm.com/read/449530/7501221
c p_and_s.c
/* p_and_s.c -- pointers and strings */
#include
int main(void)
{
const char * mesg = "Don't be a fool!";
const char * copy;
copy = mesg;
printf("%s\n", copy);
www.eeworm.com/read/448176/7538726
c gui__intersectrect.c
/*
*********************************************************************************************************
* uC/GUI
* Univers