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's the best lock size that you could use when you create a tablespace?
What is the difference between drop table and delete table?
For unmatched rows returned from an outer join, the column values in the other table are set to null e.g If A OUTER JOIN B returns some unmatched rows from A, the corresponding column values in B will be set to null. What can be done so that a null value is not displayed for these columns?
I have a table which has thousand of records i want to fetch only record num 100 to record num 200. Write a query that satisfies this criteria.(Cant use any keys) Anyone please reply ASAP!
17 Answers KNIT, Tech Mahindra,
In cursor program-1 can we create another cursor program-2 inside the cursor program-1.If yes how/no why ?
What is a buffer in memory?
how to resolve -805 . how to see dbrm and package not found
can we view the access paths created by dbrm ? how ? thx
What is the physical storage length of each of the following DB2 data types: DATE, TIME, TIMESTAMP?
What is the difference between static and dynamic SQL?
can we update the table by using cursors can anyone post the query?
what is Static and dynamic linking