Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:13

0001 // name=d4_test ; gcc $name.cc -std=c++11 -lstdc++ -o /tmp/$name && /tmp/$name
0002 
0003 #include <iostream>
0004 
0005 int main(int argc, char** argv)
0006 {
0007     struct { double x,y,z,w ; } d4 ; 
0008 
0009     d4.x = 0. ; 
0010     d4.y = 1. ; 
0011     d4.z = 2. ; 
0012     d4.w = 3. ; 
0013 
0014     std::cout 
0015         << " d4.x " << d4.x 
0016         << " d4.y " << d4.y 
0017         << " d4.z " << d4.z 
0018         << " d4.w " << d4.w 
0019         << std::endl 
0020         ; 
0021 
0022 
0023     return 0 ; 
0024 }