代码搜索:union
找到约 10,000 项符合「union」的源代码
代码结果 10,000
www.eeworm.com/read/286264/8775220
union
www.eeworm.com/read/308712/13694776
union
www.eeworm.com/read/389548/8514279
frm union.frm
www.eeworm.com/read/389548/8514373
myd union.myd
www.eeworm.com/read/389548/8514400
myi union.myi
www.eeworm.com/read/432289/8613800
cpp union.cpp
//: C03:Union.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// The size and simple use of a union
#include
www.eeworm.com/read/288523/8627208
pl union.pl
% This buffer is for notes you don't want to save.
% If you want to create a file, visit that file with C-x C-f,
% then enter the text in that file's own buffer.
%uni(+SETA,+SETB,-SETC).
%meth
www.eeworm.com/read/286954/8735255
c union.c
# include
union data
{
int a;
float b;
double c;
char d;
} exa;
void main()
{
exa.a = 6;
printf("%d\n", exa.a);
exa.c = 67.2;
printf("%5.1f\n", exa.c);
exa.d
www.eeworm.com/read/286264/8775218
c union.c
#define uchar unsigned char
void main()
{ union
{ float f;
uchar c[4];
}x;
x.f=1000.01;
for(;;)
{ x.f++;
}
}
www.eeworm.com/read/286264/8775226