fork download
  1. #include <stdint.h>
  2.  
  3. typedef struct IP_t
  4. {
  5. uint8_t data[4];
  6. } IP;
  7.  
  8. typedef struct IPPair_t
  9. {
  10. IP source;
  11. IP destination;
  12. } IPPair;
  13.  
  14.  
  15. static const IPPair pair = {{{{ 1, 2, 3, 4 }}}, {{{ 1, 2, 3, 5 }}}};
  16.  
  17. int main() { return 0; }
Success #stdin #stdout 0s 1828KB
stdin
Standard input is empty
stdout
Standard output is empty