fork(1) download
  1. #include <stdio.h>
  2.  
  3. typedef struct
  4. {
  5. float re;
  6. float im;
  7. } MyComplex;
  8.  
  9. typedef struct
  10. {
  11. float rf;
  12. union
  13. {
  14. float noise[4];
  15. MyComplex iq[4];
  16. };
  17. } RfTable_t;
  18.  
  19. RfTable_t Noise[2] =
  20. {
  21. { 1.2f, .noise={0.f} },
  22. { 2.1f, .noise={0.f} }
  23. };
  24.  
  25.  
  26. int main(void) {
  27. return 0;
  28. }
  29.  
Success #stdin #stdout 0s 4252KB
stdin
Standard input is empty
stdout
Standard output is empty