What is COUNTERS in PL/1? How to assign the COUNTER
variables? WHich Data Type it can be used for this?
Answer Posted / nygrande
COUNT is a Builtin in PL/1.
SYNTAX:
I = COUNT (file-name);
EXAMPLE:
I = COUNT (PAYROLL);
It returns the number of data items transfered during the
last GET or PUT of the file PAYROLL.
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is inspect?
Can you explain function of dbctl?
How many bytes does a s9(7) comp-3 field occupy ?
How many bytes does a s9(7) sign trailing separate field occupy ?
What is meant by a bolt dispute?
What is database descriptor?
Can I redefine an x(100) field with a field of x(200)?
Define where and its usage?
in options (main) , what is meaning of main . if u not used main what will happen? After compiling, os will not understand where to load and execute from
What is the binary search?
what is the meaning, the advantages and which are the types of evaluate statement?
Give the format of using and giving in sort statement. What are the restrictions with it?
What will happen if both steplib and joblib are determined?
If an array is multi-dimensional dynamic array how do you deal with it & provide me some examples?
My program has an array defined to have 10 items. Due to a bug, I find that even if the program access the 11th item in this array, the program does not abend. What is wrong with it?