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 drda?
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 meant by an isolation level?
What is Framework & How it work?
Explain a linkage segment
If DB2 query returns in null value, how do you work with it in PL/1?
which one of the following cannot cause more than one execution of paragraph that may be nam in statement. A) simple perform B) perform with time C) perform until D) perform varying
How do you find whether any generations exist under a gdg base?
Where is the vsam ksds placed?
What is the advantage of defragmentation?
What is the difference between hdam and hidam databases?
What is the use of base and index registers in the IBM 360/370 processor?