Wert einer nichtinitialisierten Varibalen mit file scope?
-
in C++ ist es ja so das der Wert einer nichtinitialisierten Varibalen im file scope immer einen bestimmten "Nullwert" hat - wie siehts da in C aus? bzw. wurde das von C geerbt?
-
edit: hab Mist gepostet
-
Globale und statische Variablen sind immer mit NULL (oder halt 0) initialisiert.
-
C Standard schrieb:
If an object that has static storage duration is not initialized explicitly,
then:
— if it has pointer type, it is initialized to a null pointer;
— if it has arithmetic type, it is initialized to (positive or unsigned) zero;
— if it is an aggregate, every member is initialized (recursively) according to these rules;
— if it is a union, the first named member is initialized (recursively) according to these rules.