|
1#include <stdio.h>
2
3void
4printSize (long x[])
5{
6 printf ("Die Laenge von x ist: %d\n", sizeof x);
7}
8
9int
10main (void)
11{
12 long a[10];
13
14 printf ("Die Laenge von a ist: %d\n", sizeof a);
15 printSize (a);
16
17 return 0;
18}
|
| Letzte Änderung: 15.11.2011 | © Prof. Dr. Uwe Schmidt |