代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/190666/5177696
c s-pointer-a-short.c
#include
static struct sss{
char * f;
short a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of short in struct sta
www.eeworm.com/read/190666/5177702
c s-pointer-float.c
#include
static struct sss{
char * f;
float snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct pointer-float:\n");
pr
www.eeworm.com/read/190666/5177741
c s-pointer-longlong.c
#include
static struct sss{
char * f;
long long snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct pointer-longlong:\n"
www.eeworm.com/read/190666/5177755
c s-pointer-a-long.c
#include
static struct sss{
char * f;
long a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of long in struct start
www.eeworm.com/read/190666/5177798
c s-int-pointer.c
#include
static struct sss{
int f;
char * snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct int-pointer:\n");
printf
www.eeworm.com/read/190666/5177812
c s-pointer-a-longdouble.c
#include
static struct sss{
char * f;
long double a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of longdouble in
www.eeworm.com/read/190666/5177818
c s-double-a-pointer.c
#include
static struct sss{
double f;
char * a[10];
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("++++Array of pointer in struct
www.eeworm.com/read/190666/5177824
c s-pointer-char.c
#include
static struct sss{
char * f;
char snd;
} sss;
#define _offsetof(st,f) ((char *)&((st *) 16)->f - (char *) 16)
int main (void) {
printf ("+++Struct pointer-char:\n");
prin
www.eeworm.com/read/178760/5313639
c scott-pointer1.c
/*
Pointer tests
*/
#include
unsigned int aint0 = 0;
unsigned int aint1 = 0;
unsigned char achar0 = 0;
unsigned char achar1 = 0;
unsigned char *acharP = 0;
void
f1 (unsigned char *ucP)
www.eeworm.com/read/168845/5431600
hpp basic_pointer_iserializer.hpp
#ifndef BOOST_ARCHIVE_BASIC_ARCHIVE_POINTER_ISERIALIZER_HPP
#define BOOST_ARCHIVE_BASIC_ARCHIVE_POINTER_ISERIALIZER_HPP
// MS compatible compilers support #pragma once
#if defined(_MSC_VER) && (_