If we use GO BACK instead of STOP RUN in cobol?
Answers were Sorted based on User's Feedback
Answer / girish kumar
if the program doesn't consists of call statement we can use
eaither goback or stoprun to terminate the program.
But if program having the call statement
We have to use GOBACK for SUB-PROGRAM
STOPRUN for MAINPROGRAM
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / chaitanya chandana
if u use goback() it will back to the main program....But were as stoprun() it wil shows the end of the main program..
if there any mistake plz correct me.
| Is This Answer Correct ? | 6 Yes | 0 No |
What is length is cobol?
Why do we code s9 (4) comp. Inspite of knowing comp-3 will occupy less space?
how to access vsam files in cobol and how to differentiate that this is ESDS file
How many bytes will be allocated for the following record description entries? 01 REC-A. 05 A PIC S9(4). 05 B PIC XXXBXXX. 05 C PIC ____9.99. 05 D PIC S9(5) COMP-3. 05 E PIC 9(3) COMP.
16 Answers IBM, TCS,
SIGN TRAILING SEPARATE field occupy ?
what is internal sort and external sort ? which is preferable ?
What does the INITIALIZE verb do?
Should I use STOP RUN in the sub program??why?
can you declare redefine in level 01?
What is link edit in cobol?
explain sorting techniques in cobol program?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?