Page 1 of 1

What code needs to be executed, if any, before the variable A can be successfully accessed?DCL X PTR;DCL B CHAR(100) INI

Posted: Fri Aug 26, 2022 9:59 am
by answerhappygod
What code needs to be executed, if any, before the variable A can be successfully accessed?DCL X PTR;DCL B CHAR(100) INIT(' ');DCL A CHAR(100) BASED(X);

A. A can be accessed without any further action.
B. X = ADDR(B);
C. A = B;
D. X = NULL();