types 233 B

1234567891011121314151617
  1. struct A {
  2. int a;
  3. };
  4. void main() {
  5. int[] a = new int[4];
  6. float[] b = new float[4];
  7. A[] d = new A[4];
  8. a[2] = 243;
  9. b[2] = 23.5;
  10. d[2].a = 64560;
  11. test(a[2]);
  12. test(b[2]);
  13. test(d[2].a);
  14. }