What is COUNTERS in PL/1? How to assign the COUNTER
variables? WHich Data Type it can be used for this?
Answers were Sorted based on User's Feedback
Answer / 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 |
What is meant by deadlock in db2?
how to display the negative numbers?
How do you get parameter from JCL to PL1?
what error do we get in prodution support and questions on production support
How do you eliminate the duplicates?
How many bytes does a s9(7) sign trailing separate field occupy ?
Can min or max be used with alphanumeric data?
What is use of IBM framework?
which of the following is not true about search verb A) every search stmt must contain the AT END clause B) any no of WHEN clause can be used with this verb C) this verb can only applied to a table which is defined with the OCCURS clause and INDEXED phases. D) WHEN condition is satisfied
How many minimum number of line codes does PL/1 DB2 program requires?
0 Answers IBM, TelePerformance,
What is the mainframe computer?
What is the need to code commits in batch programs?