What is COUNTERS in PL/1? How to assign the COUNTER
variables? WHich Data Type it can be used for this?
Answer Posted / sravan
To count number of operations occured we use counters.
DCL I FIXED BIN(15); /* DECLARATION of counter */
DCL eof bit(1) initial ('1'b);
DCL 1 var_b,
2 inrec char(2);
read file(filename) into(var_b);
Do while(!eof);
put skip list('Hi');
i = i + 1;
read file(filename) into(var_b);
end;
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How do you eliminate the duplicates?
If anyone has latest IBM Certification Dumps can you pls forwards it to me
How do you create a like table?
What is mainframe computer /system?
What is RRange and ARange?
how do u start your process after conducting impact analysis ?
Explain eib?
Can the values of alphanumeric be moved to variable numeric?
Name and explain the type of locks?
What is the importance of common attribute?
Name the versions of ibm mainframes have introduced in the market?
Are scope terminators compulsory? If they are, when?
Can you define an alias?
What is the term “where” for?
what sorting order does search all have?