comparison tests/mini/b.d @ 341:1bb99290e03a trunk

[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
author lindquist
date Sun, 13 Jul 2008 02:51:19 +0200
parents test/b.d@d9d5d59873d8
children
comparison
equal deleted inserted replaced
340:351c0077d0b3 341:1bb99290e03a
1 module b;
2
3 extern(C) int printf(char*, ...);
4
5 struct S
6 {
7 int i;
8 float[4] f;
9 }
10
11 void main()
12 {
13 S s;
14 int i = s.i;
15 int* p = &s.i;
16 *p = 42;
17 printf("%d == %d\n", *p, s.i);
18
19 float* f = &s.f[0];
20 printf("%f == %f\n", *f, s.f[0]);
21 *f = 3.1415;
22 printf("%f == %f\n", *f, s.f[0]);
23 s.f[0] = 123.456;
24 printf("%f == %f\n", *f, s.f[0]);
25 }