fork download
  1. #include <stdio.h>
  2.  
  3. typedef unsigned char u_t;
  4.  
  5. int main(void) {
  6.  
  7. struct frc{
  8. u_t frt:3;
  9. u_t sec:1;
  10. } FRC;
  11.  
  12. printf("%d\n", sizeof(FRC));
  13. return 0;
  14. }
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
1