fork(1) download
  1. #include <stdio.h>
  2.  
  3. typedef unsigned char BYTE;
  4.  
  5. typedef struct {
  6. BYTE bMatrix[3][4];
  7. } STRUCTURE;
  8.  
  9.  
  10.  
  11.  
  12. int main(void) {
  13.  
  14. STRUCTURE structure = {0};
  15.  
  16. float myFloat = structure.bMatrix[1][1] * 0.1;
  17. printf("%f", myFloat);
  18. return 0;
  19. }
  20.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
0.000000