fork(1) download
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. struct Sorte {
  5. int nr;
  6. char name[64];
  7. };
  8.  
  9. struct Sorte produkte[3];
  10.  
  11. int main() {
  12. printf("sizeof: %d", sizeof(produkte));
  13. return 0;
  14. }
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
sizeof: 204