Micro Focus Visual COBOL.
An item in working storage is described as PIC X type but no VALUE clause, as follows:
WORKING-STORAGE.
01 WORK-ITEM PIC X(10).
In this example, when program loads, does this item have an initial value of spaces? ... or is it "undefined"?
(Assume default environment, should environment variables affect the answer).
Also, if there is a documentation reference, please provide a link.
Thanks!