How we can retrieve the instream data in SYSIN ?
Answer Posted / amarnadh reddy
Use Accept in procedure division.
Example :
WORKING-STORAGE SECTION.
01 empno. Pic x(05).
01 empname pic x(15).
01 empsal pic 9(10).
PROCEDURE DIVISION.
................
PERFORM ACCEPT-PARA.
..............
ACCEPT-PARA.
ACCEPT EMPNO.
ACCEPT EMPNAME.
ACCEPT EMPSAL.
In JCL :
...........
............
//sysin dd *
001
aaaa
330000
/*
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
Explain about house keeping in assembler?
What does the following code do? Ap wkur,=p5 where wkur is a label?
how to initialize a register to 0000?
How to pass the parameters from jcl to assembler program?
Explain how to pass instream data in sysin with assembler?
How do you round the addition or subtraction of two numbers in assembler?
What is maximum displacement and how to cross this limit?
Explain about base register?
how do you round the addition or subtraction of two numbers in assembler? what does the following code do? change process tool(code changes from dev to prd) the changes made to your code should be effected in live. How the process takes place. That is how can you move the code changes from development to production?
Explain the difference in data type "x" and "p"?
how to retrieve the instream data in sysin?
How many maximum base registers we can have in a program?
What is need of start 0?
Ap wkur,=p5 where wkur is a label?
explain icm instruction?