What is usage pointer in cobol?
Answers were Sorted based on User's Feedback
Answer / nidhi
1. Its declared without a pic clause. Only "usage is pointer" is declared for the variable.
2. Its a 4 byte variable used to hold address of variables in linkage sectio only.
3. "seT ADDRESS OF VAR-LINK-SEC TO POINTER-VAR" is how we get address into pointer var.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / varalakshmi
You can use pointer data items when you want to accomplish limited base addressing,
particularly when you want to pass and receive addresses of a variably located record
area.
| Is This Answer Correct ? | 0 Yes | 0 No |
Declare a pointer as an elementary data item bearing the
USAGE IS POINTER clause, with no PICTURE. E.g:
05 EXAMPLE-P USAGE IS POINTER.
EXAMPLE-P is a four-byte field which can store the address
of any data item. Unless you're interfacing COBOL to
Assembler or something, you really don't care what the
pointer looks like internally. It's just a piece of magic
which enables you to access the thing it's pointing to.
Please let me know if I am wrong
| Is This Answer Correct ? | 0 Yes | 2 No |
What does db2 plan contain?
Parm value passed is PARM=(10,20). how do code linkage section and how would you add these two passes values and show result in cobol program.
What is explain in db2?
What techniques are used to retrieve data from more than one table in a single SQL statement?
How will you return the number of records in table?
What if we try to insert the base table through updatable view , but failed to give a column value which is defined as NOT NULL.
Is the primary key a clustered index?
why we create view.
why we go for SPUFI for creating tables or for sql queries?
Shall i use this query to retrieve first 4 records, Select empno, sal from emptbl where empno < 5. like this can we fetch first 100 records?
How to connect to db2 database from windows command line?
What is a DBRM, PLAN ?