fork download
  1. #include <stdio.h>
  2.  
  3. typedef struct
  4. {
  5. char brkid[8+ 1];
  6. int icode;
  7. } brk_inner_code_t;
  8.  
  9. int main(void) {
  10. brk_inner_code_t bicode[1] = {
  11. {"5555",1}};
  12. printf("%d\n", sizeof(bicode)/sizeof(bicode[0]));
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5464KB
stdin
Standard input is empty
stdout
1