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
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();
A. A can be accessed without any further action.
B. X = ADDR(B);
C. A = B;
D. X = NULL();