next up previous
Next: Pointer Arithmetik bei Arrays Up: Datentypen, Operatoren, Arrays, Structs Previous: Arrays

Beispiel: Initialisierung von Arrays

main()
{
        const int num = 5;
        int j, p[num] = {20};
        for(j=0; j<num; j++) 
        {
                cout << j << " " << p[j] <<endl;
        }
}

Ausgabe

miss:~/lehre/2.stud/cppag/folien/test> init
0 20
1 0
2 0
3 0
4 0


next up previous
Next: Pointer Arithmetik bei Arrays Up: Datentypen, Operatoren, Arrays, Structs Previous: Arrays

© 1997 Gottfried Rudorfer, C++-AG, Lehrveranstaltungen, Abteilung für Angewandte Informatik, Wirtschaftsuniversität Wien, 3/19/1998